-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmanifest.json
More file actions
30 lines (29 loc) · 822 Bytes
/
manifest.json
File metadata and controls
30 lines (29 loc) · 822 Bytes
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
30
{
"manifest_version": 2,
"name": "Widevine Guesser",
"short_name": "WidevineGuesser",
"description": "Guesses at session key input and logs media keys from websites that use Widevine DRM",
"version": "1.0.0",
"permissions": ["webRequest", "<all_urls>", "tabs", "cookies"],
"icons":
{
},
"background": {
"scripts": ["background.js"]
},
"browser_action": {
"default_popup": "popup.html"
},
"content_scripts":
[
{
"matches": ["https://*/*"],
"js": ["content_script.js"],
"css": [],
"run_at": "document_start",
"all_frames": true
}
],
"content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
"web_accessible_resources": ["content_key_decryption.js", "eme_interception.js", "lib/*", "protobuf-generated/*","wasm/*"]
}