https://github.com/tomer8007/widevine-l3-decryptor
Revision 35a957d7524d6f5768d52feab3c95819b0a44a19 authored by Tomer on 19 October 2020, 16:58:24 UTC, committed by Tomer on 19 October 2020, 16:59:34 UTC
1 parent 8a8b2fd
Raw File
Tip revision: 35a957d7524d6f5768d52feab3c95819b0a44a19 authored by Tomer on 19 October 2020, 16:58:24 UTC
Fixed a typo
Tip revision: 35a957d
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