https://github.com/tomer8007/widevine-l3-decryptor
Revision e9757b2fd5be33b2925128a5f0441fca2e953e32 authored by Tomer on 17 October 2020, 19:25:57 UTC, committed by GitHub on 17 October 2020, 19:25:57 UTC
1 parent 6938873
Raw File
Tip revision: e9757b2fd5be33b2925128a5f0441fca2e953e32 authored by Tomer on 17 October 2020, 19:25:57 UTC
Initial commit
Tip revision: e9757b2
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