mirror of
https://github.com/shirt-dev/netflix-international.git
synced 2025-05-02 08:30:33 +00:00
52 lines
No EOL
1.1 KiB
JSON
52 lines
No EOL
1.1 KiB
JSON
{
|
|
"manifest_version": 2,
|
|
"name": "Netflix International",
|
|
"description": "Displays all available Netflix audio and subtitle tracks.",
|
|
"version": "2.0.22",
|
|
"author": "shirt",
|
|
"browser_action": {
|
|
"default_icon": "img/icon128.png",
|
|
"default_popup": "pages/options.html"
|
|
},
|
|
"browser_specific_settings": {
|
|
"gecko": {
|
|
"id": "netflix-international@shirt"
|
|
}
|
|
},
|
|
"icons": {
|
|
"48": "img/icon48.png",
|
|
"128": "img/icon128.png"
|
|
},
|
|
"content_scripts": [{
|
|
"matches": [
|
|
"*://assets.nflxext.com/*",
|
|
"*://netflix.com/*",
|
|
"*://www.netflix.com/*"
|
|
],
|
|
"all_frames": true,
|
|
"css": ["netflix.css"],
|
|
"js": ["content_script.js"],
|
|
"run_at": "document_start"
|
|
}],
|
|
"background": {
|
|
"scripts": ["background.js"]
|
|
},
|
|
"options_ui": {
|
|
"page": "pages/options.html",
|
|
"open_in_tab": true
|
|
},
|
|
"web_accessible_resources": [
|
|
"cadmium-playercore-shim.js",
|
|
"netflix_max_bitrate.js",
|
|
"netflix.css"
|
|
],
|
|
"permissions": [
|
|
"storage",
|
|
"webRequest",
|
|
"webRequestBlocking",
|
|
"*://assets.nflxext.com/*",
|
|
"*://netflix.com/*",
|
|
"*://www.netflix.com/*"
|
|
]
|
|
}
|
|
|