Netflix International

Displays all available Netflix audio and subtitle tracks.

Cos'è Netflix International?

Netflix International è un'estensione di Chrome sviluppata da shirt, e la sua funzione principale è "Displays all available Netflix audio and subtitle tracks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Netflix International

Scarica i file di estensione Netflix International in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        This extension allows users to listen to audio tracks on Netflix that are not normally displayed.

Not an official Netflix product.                    

Informazioni di Base sull'Estensione

Nome Netflix International Netflix International
ID pbbaoiomplacehgkfnlejmibhmbebaal
URL Ufficiale https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal
Descrizione Displays all available Netflix audio and subtitle tracks.
Dimensione del File 16.43 KB
Conteggio Installazioni 774
Versione Corrente 2.0.21
Ultimo Aggiornamento 2023-11-05
Data di Pubblicazione 2021-03-29
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore shirt
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}