Netflix International

Displays all available Netflix audio and subtitle tracks.

Netflix Internationalคืออะไร?

Netflix International เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shirt และคุณลักษณะหลักของมันคือ "Displays all available Netflix audio and subtitle tracks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix International

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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\/*"
    ]
}