widevine-l3-decryptor/manifest.json

30 lines
584 B
JSON
Raw Normal View History

2020-10-17 21:25:57 +02:00
{
"manifest_version": 2,
2020-10-27 23:08:50 +01:00
"name": "Widevine Decryptor",
2020-10-17 21:25:57 +02:00
"short_name": "WidevineDecryptor",
2020-10-27 23:08:50 +01:00
"description": "Decrypts and logs media keys from websites that use Widevine DRM",
2020-10-17 21:25:57 +02:00
"version": "1.0.0",
"permissions":
2020-10-17 21:25:57 +02:00
[
2020-10-17 21:25:57 +02:00
],
"icons":
{
},
"browser_action": {
},
"content_scripts":
[
{
"matches": ["https://*/*"],
"js": ["content_script.js"],
2020-10-17 21:25:57 +02:00
"css": [],
2020-10-27 23:09:21 +01:00
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": ["content_key_decryption.js", "eme_interception.js", "lib/*", "protobuf-generated/*"]
}