Netflix International
Displays all available Netflix audio and subtitle tracks.
O que é Netflix International?
Netflix International é uma extensão do Chrome desenvolvida por shirt, e sua principal característica é "Displays all available Netflix audio and subtitle tracks.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Netflix International
Baixe arquivos de extensão Netflix International no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
Informações Básicas da Extensão
Nome | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
URL Oficial | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
Descrição | Displays all available Netflix audio and subtitle tracks. |
Tamanho do Arquivo | 16.43 KB |
Contagem de Instalações | 774 |
Versão Atual | 2.0.21 |
Última Atualização | 2023-11-05 |
Data de Publicação | 2021-03-29 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | shirt |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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\/*" ] } |