Watch Netflix more comfortably on your computer.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "Netflix_Extension",
"description": "Watch Netflix more comfortably on your computer.",
"version": "1.51",
"author": "org by truedread ,modify by https://github.com/lkmvip/netflix-4K-DDplus",
"browser_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/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"all_frames": true,
"js": [
"content_script.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"background.js"
]
},
"web_accessible_resources": [
"netflix_max_bitrate.js",
"cadmium-playercore-6.0031.018.911.js"
],
"permissions": [
"storage",
"webRequest",
"webRequestBlocking",
"*://assets.nflxext.com/*/ffe/player/html/*",
"*://www.assets.nflxext.com/*/ffe/player/html/*",
"*://netflix.com/*",
"*://www.netflix.com/*"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}