Netflix International

Displays all available Netflix audio and subtitle tracks.

Co to jest Netflix International?

Netflix International to rozszerzenie Chrome opracowane przez shirt, a jego główną funkcją jest „Displays all available Netflix audio and subtitle tracks.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Netflix International

Pobierz pliki rozszerzeń Netflix International w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Not an official Netflix product.                    

Podstawowe informacje o rozszerzeniu

Nazwa Netflix International Netflix International
ID pbbaoiomplacehgkfnlejmibhmbebaal
Oficjalny URL https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal
Opis Displays all available Netflix audio and subtitle tracks.
Rozmiar pliku 16.43 KB
Liczba instalacji 774
Aktualna Wersja 2.0.21
Ostatnia Aktualizacja 2023-11-05
Data Publikacji 2021-03-29
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper shirt
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
    ]
}