mirror of
https://github.com/shirt-dev/netflix-international.git
synced 2025-06-22 00:36:43 +00:00
initial commit
This commit is contained in:
commit
a7d3a7d8fd
11 changed files with 429 additions and 0 deletions
51
manifest.json
Normal file
51
manifest.json
Normal file
|
@ -0,0 +1,51 @@
|
|||
{
|
||||
"manifest_version": 2,
|
||||
"name": "Netflix International",
|
||||
"description": "Displays all available Netflix audio tracks.",
|
||||
"version": "2.0.0",
|
||||
"author": "shirt",
|
||||
"browser_action": {
|
||||
"default_icon": "img/icon128.png"
|
||||
},
|
||||
"browser_specific_settings": {
|
||||
"gecko": {
|
||||
"id": "netflix-international@shirt"
|
||||
}
|
||||
},
|
||||
"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"]
|
||||
},
|
||||
"options_ui": {
|
||||
"page": "pages/options.html",
|
||||
"open_in_tab": false
|
||||
},
|
||||
"web_accessible_resources": [
|
||||
"cadmium-playercore-shim.js",
|
||||
"netflix_max_bitrate.js"
|
||||
],
|
||||
"permissions": [
|
||||
"storage",
|
||||
"webRequest",
|
||||
"webRequestBlocking",
|
||||
"*://assets.nflxext.com/*/ffe/player/html/*",
|
||||
"*://www.assets.nflxext.com/*/ffe/player/html/*",
|
||||
"*://netflix.com/*",
|
||||
"*://www.netflix.com/*"
|
||||
]
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue