summaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: 08b928fab7eb91a0733a513cd878e04601ee4b5b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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/*"]
}