-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
44 lines (44 loc) · 1.03 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
{
"manifest_version": 2,
"name": "Netflix 4K-DDplus",
"description": "Watch Netflix more comfortably on your computer.",
"version": "1.1",
"author": "org by truedread ,modify by https://github.com/lkmvip/netflix-4K-DDplus",
"browser_action": {
"default_title": "Netflix Options",
"default_popup": "options/options.html",
"default_icon": {
"128": "img/icon128.png"
}
},
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"content_scripts": [
{
"matches": [
"*://www.netflix.com/*",
"*://netflix.com/*"
],
"js": ["content_script.js"],
"css": ["netflix.css"],
"run_at": "document_start"
}
],
"background": {
"scripts": ["background.js"]
},
"web_accessible_resources": [
"cadmium-playercore-6.0038.071.911.js",
"max_bitrate.js"
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://assets.nflxext.com/*/ffe/player/html/*",
"*://www.netflix.com/*",
"*://netflix.com/*"
]
}