-
Notifications
You must be signed in to change notification settings - Fork 91
/
manifest.json
60 lines (60 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"manifest_version": 3,
"name": "Netflix_Extension",
"description": "Watch Netflix more comfortably on your computer.",
"version": "1.1",
"author": "org by truedread ,modify by https://github.com/lkmvip/netflix-4K-DDplus",
"action": {
"default_title": "Netflix Options",
"default_popup": "pages/options.html",
"default_icon": {
"128": "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/*",
"*://assets.nflxext.com/player/html/ffe/*",
"*://www.assets.nflxext.com/player/html/ffe/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"all_frames": true,
"js": ["content_script.js"],
//"css": ["Netflix.css"],
"run_at": "document_start"
}],
"web_accessible_resources": [{
"resources": [
"netflix_max_bitrate.js",
"cadmium-playercore.js"
],
"matches": [
"*://netflix.com/*",
"*://www.netflix.com/*"
]
}],
"declarative_net_request" : {
"rule_resources" : [{
"id": "1",
"enabled": true,
"path": "rules.json"
}]
},
"permissions": [
"storage",
"tabs",
"declarativeNetRequest"
],
"host_permissions": [
"*://assets.nflxext.com/*/ffe/player/html/*",
"*://www.assets.nflxext.com/*/ffe/player/html/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
]
}