Netflix International

Displays all available Netflix audio and subtitle tracks.

什麼是Netflix International?

Netflix International是由shirt開發的Chrome擴展程式,該擴展的主要功能是“Displays all available Netflix audio and subtitle tracks.”。

擴展截圖

screenshot

下載Netflix International擴展crx文件

下載Netflix International擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

Not an official Netflix product.                    

擴展基本資訊

名稱 Netflix International Netflix International
ID pbbaoiomplacehgkfnlejmibhmbebaal
官方網址 https://chromewebstore.google.com/detail/netflix-international/pbbaoiomplacehgkfnlejmibhmbebaal
簡介 Displays all available Netflix audio and subtitle tracks.
檔案大小 16.43 KB
安裝次數 774
目前版本 2.0.21
更新時間 2023-11-05
上架時間 2021-03-29
評分 5.00/5 共 6 次評分
開發者 shirt
電子郵箱 [email protected]
付費類型 free
支援的語言 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\/*"
    ]
}