https://github.com/tomer8007/widevine-l3-decryptor
Revision 73aec0bb7d9c45995b20c569880d1330e8bd09e6 authored by Tomer on 23 October 2020, 21:16:54 UTC, committed by GitHub on 23 October 2020, 21:16:54 UTC
1 parent 5350515
Raw File
Tip revision: 73aec0bb7d9c45995b20c569880d1330e8bd09e6 authored by Tomer on 23 October 2020, 21:16:54 UTC
Fixed a typo
Tip revision: 73aec0b
manifest.json
{
  "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/*"]
}
back to top