Netflix International
Displays all available Netflix audio and subtitle tracks.
Hvad er Netflix International?
Netflix International er en Chrome-udvidelse udviklet af shirt, og dens hovedfunktion er "Displays all available Netflix audio and subtitle tracks.".
Udvidelsesskærmbilleder
Download Netflix International-udvidelses-CRX-fil
Download Netflix International-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
This extension allows users to listen to audio tracks on Netflix that are not normally displayed. Not an official Netflix product.
Grundlæggende oplysninger om udvidelsen
Navn | Netflix International |
ID | pbbaoiomplacehgkfnlejmibhmbebaal |
Officiel URL | https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal |
Beskrivelse | Displays all available Netflix audio and subtitle tracks. |
Filstørrelse | 16.43 KB |
Antal Installationer | 774 |
Nuværende Version | 2.0.21 |
Senest Opdateret | 2023-11-05 |
Udgivelsesdato | 2021-03-29 |
Bedømmelse | 5.00/5 Samlet 6 Bedømmelser |
Udvikler | shirt |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |