forked from Puyodead1/wv-netflix-extension
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest.json
48 lines (48 loc) · 1.18 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
{
"manifest_version": 2,
"name": "Netflix WV Ripper Assistant",
"description": "Assists the Widevine l3 decryptor by producing netflix related metadata and manifests",
"version": "1.0.0",
"author": "Puyodead1",
"browser_action": {
"default_icon": "img/icon128.png"
},
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://assets.nflxext.com/*/ffe/player/html/*",
"*://www.assets.nflxext.com/*/ffe/player/html/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"all_frames": true,
"js": ["content_script.js"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"]
},
"options_ui": {
"page": "pages/options.html",
"open_in_tab": false
},
"web_accessible_resources": [
"msl_client.js",
"netflix_max_bitrate.js",
"cadmium-playercore-6.0026.529.051.js"
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://assets.nflxext.com/*/ffe/player/html/*",
"*://www.assets.nflxext.com/*/ffe/player/html/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
]
}