From e9757b2fd5be33b2925128a5f0441fca2e953e32 Mon Sep 17 00:00:00 2001 From: Tomer <11458759+tomer8007@users.noreply.github.com> Date: Sat, 17 Oct 2020 22:25:57 +0300 Subject: Initial commit --- manifest.json | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 manifest.json (limited to 'manifest.json') diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..08b928f --- /dev/null +++ b/manifest.json @@ -0,0 +1,29 @@ +{ + "manifest_version": 2, + "name": "Widivine Decryptor", + "short_name": "WidevineDecryptor", + "description": "Decrypts and logs media keys from websites that use Widivine DRM", + "version": "1.0.0", + "permissions": + [ + + ], + "icons": + { + + }, + "browser_action": { + + }, + + "content_scripts": + [ + { + "matches": ["https://*/*"], + "js": ["content_script.js"], + "css": [], + "run_at": "document_start" + } + ], + "web_accessible_resources": ["content_key_decryption.js", "eme_interception.js", "lib/*", "protobuf-generated/*"] +} \ No newline at end of file -- cgit v1.2.3