Netflix Controller

Control Netflix in your browser with a gamepad or controller.

Netflix Controllerคืออะไร?

Netflix Controller เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Finn Thompson และคุณลักษณะหลักของมันคือ "Control Netflix in your browser with a gamepad or controller."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Netflix Controller ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Watch Netflix from the comfort of your couch with this browser plugin.

Features:
• Navigate Netflix using a controller
• Control the video player (play/pause, mute, fullscreen, volume, jump forward/back, skip intro, next episode)
• Search for media using virtual keyboard
* See current actions in the hints bar at the bottom of the viewport
• Choose options when watching interactive media like Black Mirror Bandersnatch
• Choose your button icons (Xbox 360 / Xbox One / PS3 / PS4)
• Test your gamepad mapping in the browser icon popup
• Customize your experience in the extension options                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Netflix Controller Netflix Controller
ID kjgfkjidgcfgbabbhjephchohcghcdkf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/netflix-controller/kjgfkjidgcfgbabbhjephchohcghcdkf
คำอธิบาย Control Netflix in your browser with a gamepad or controller.
ขนาดไฟล์ 424 KB
จำนวนการติดตั้ง 811
เวอร์ชันปัจจุบัน 1.0.5
อัปเดตครั้งล่าสุด 2020-10-26
วันที่เผยแพร่ 2020-06-02
คะแนน 4.17/5 รวมทั้งหมด 12 คะแนน
ผู้พัฒนา Finn Thompson
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/FThompson/NetflixController
URL หน้าช่วยเหลือ https://github.com/FThompson/NetflixController/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Netflix Controller",
    "version": "1.0.5",
    "description": "Control Netflix in your browser with a gamepad or controller.",
    "manifest_version": 2,
    "permissions": [
        "*:\/\/*.netflix.com\/*",
        "declarativeContent",
        "tabs",
        "storage"
    ],
    "background": {
        "scripts": [
            "static\/js\/[email protected]",
            "app\/options\/settings.js",
            "app\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.netflix.com\/*"
            ],
            "exclude_matches": [
                "*:\/\/help.netflix.com\/*"
            ],
            "js": [
                "static\/js\/[email protected]",
                "static\/js\/[email protected]",
                "static\/js\/[email protected]",
                "static\/js\/[email protected]",
                "app\/content\/components\/direction.js",
                "app\/content\/components\/navigatable.js",
                "app\/content\/components\/static-navigatable.js",
                "app\/content\/components\/title-panel.js",
                "app\/content\/components\/slider.js",
                "app\/content\/components\/billboard.js",
                "app\/content\/components\/menu.js",
                "app\/content\/components\/profiles.js",
                "app\/content\/components\/choices.js",
                "app\/content\/components\/jawbone.js",
                "app\/content\/ui\/virtual-keyboard.js",
                "app\/content\/ui\/bottom-bar.js",
                "app\/content\/ui\/notice-bar.js",
                "app\/content\/ui\/actions.js",
                "app\/content\/ui\/connection-hint.js",
                "app\/content\/ui\/compatibility-warning.js",
                "app\/content\/ui\/error-bar.js",
                "app\/content\/pages\/page.js",
                "app\/content\/pages\/choose-profile.js",
                "app\/content\/pages\/slider-browse.js",
                "app\/content\/pages\/pure-slider-browse.js",
                "app\/content\/pages\/featureless-browse.js",
                "app\/content\/pages\/featured-browse.js",
                "app\/content\/pages\/latest-browse.js",
                "app\/content\/pages\/title-browse.js",
                "app\/content\/pages\/watch.js",
                "app\/content\/pages\/search.js",
                "app\/content\/content.js"
            ],
            "css": [
                "static\/styles\/content.css"
            ]
        }
    ],
    "options_page": "app\/options\/options.html",
    "page_action": {
        "default_popup": "app\/popups\/popup.html",
        "default_icon": {
            "16": "static\/icon16.png",
            "32": "static\/icon32.png",
            "48": "static\/icon48.png",
            "128": "static\/icon128.png"
        }
    },
    "icons": {
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png",
        "128": "static\/icon128.png"
    },
    "web_accessible_resources": [
        "static\/buttons\/*\/*.png",
        "static\/styles\/content.css"
    ]
}