Netflix International
Displays all available Netflix audio and subtitle tracks.
Wat is Netflix International?
Netflix International is een Chrome-extensie ontwikkeld door shirt, en de belangrijkste functie is "Displays all available Netflix audio and subtitle tracks.".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix International
Download Netflix International-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
Basisinformatie over de Extensie
Naam | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
Officiële URL | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
Beschrijving | Displays all available Netflix audio and subtitle tracks. |
Bestandsgrootte | 16.43 KB |
Aantal Installaties | 774 |
Huidige Versie | 2.0.21 |
Laatst Bijgewerkt | 2023-11-05 |
Publicatiedatum | 2021-03-29 |
Beoordeling | 5.00/5 Totaal 6 Beoordelingen |
Ontwikkelaar | shirt |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Netflix International", "description": "Displays all available Netflix audio and subtitle tracks.", "version": "2.0.21", "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\/*\/ffe\/player\/html\/*", "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/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\/*\/ffe\/player\/html\/*", "*:\/\/www.assets.nflxext.com\/*\/ffe\/player\/html\/*", "*:\/\/netflix.com\/*", "*:\/\/www.netflix.com\/*" ] } |