Netflix International
Displays all available Netflix audio and subtitle tracks.
Qu'est-ce que Netflix International ?
Netflix International est une extension Chrome développée par shirt, et sa fonction principale est "Displays all available Netflix audio and subtitle tracks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Netflix International
Téléchargez les fichiers d'extension Netflix International au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
Informations de Base sur l'Extension
Nom | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
URL Officiel | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
Description | Displays all available Netflix audio and subtitle tracks. |
Taille du Fichier | 16.43 KB |
Nombre d'Installations | 774 |
Version Actuelle | 2.0.21 |
Dernière Mise à Jour | 2023-11-05 |
Date de Publication | 2021-03-29 |
Évaluation | 5.00/5 Total 6 Évaluations |
Développeur | shirt |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |