forked from truedread/netflix-1080p
-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmanifest.json
executable file
·56 lines (56 loc) · 1.45 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
{
"manifest_version": 3,
"name": "New Netflix 1080p",
"description": "Forces 1080p and 5.1 playback for Netflix as well as other QoL improvements.",
"version": "1.31.4",
"author": "jangxx (original by truedread)",
"action": {
"default_icon": "img/icon128.png"
},
"icons": {
"48": "img/icon48.png",
"128": "img/icon128.png",
"16": "img/icon16.png",
"32": "img/icon32.png"
},
"content_scripts": [{
"matches": [
"*://assets.nflxext.com/player/html/ffe/*",
"*://*.a.nflxso.net/sec/player/html/ffe/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"all_frames": true,
"css": ["style_fix.css"],
"js": ["content_script.js"],
"run_at": "document_start"
}],
"options_ui": {
"page": "pages/options.html",
"open_in_tab": false
},
"web_accessible_resources": [{
"resources": [
"netflix_max_bitrate.js",
"cadmium-playercore-6.0047.826.911-patched.js"
],
"matches": [ "*://www.netflix.com/*" ]
}],
"permissions": [
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"*://assets.nflxext.com/player/html/ffe/*",
"*://*.a.nflxso.net/sec/player/html/ffe/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"declarative_net_request" : {
"rule_resources": [{
"id": "redirect_to_patched",
"enabled": true,
"path": "redirect_rules.json"
}]
}
}