forked from parnexcodes/widevine-l3-guesser-modified
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
37 lines (36 loc) · 909 Bytes
/
manifest.json
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
31
32
33
34
35
36
37
{
"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",
"background": {
"scripts": [
"background.js"
]
},
"permissions":
[
"webRequest",
"https://*/*"
],
"icons":
{
},
"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/*"],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}