Netflix Navigator

Navigate Netflix with your keyboard or game controller

Netflix Navigator là gì?

Netflix Navigator là một tiện ích mở rộng Chrome được phát triển bởi Chris Heald, và tính năng chính của nó là "Navigate Netflix with your keyboard or game controller".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Netflix Navigator

Tải xuống các tệp mở rộng Netflix Navigator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension that uses the HTML5 Gamepad API to provide game controller (and keyboard) navigator and control for Netflix. Chrome 40+ is required. The primary use case is for integration with an HTPC (ie, Kodi with ChromeLauncher).

Currently supported features:

* Profile selection
* Movie navigation with customized movie info pane
* Playback control (pause, mute, seek/scrub, volume, next episode)

This has only been tested with XBox 360 controllers so far.

Source and more info is available at https://github.com/cheald/NetflixNavigator/                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
URL Chính Thức https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
Mô tả Navigate Netflix with your keyboard or game controller
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 135
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-01-27
Ngày Phát Hành 2015-01-26
Đánh Giá 2.44/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Chris Heald
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/cheald/NetflixNavigator/
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Netflix Navigator",
    "short_name": "NetflixNav",
    "description": "Navigate Netflix with your keyboard or game controller",
    "version": "1.0.1",
    "permissions": [
        "*:\/\/www.netflix.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.netflix.com\/*"
            ],
            "css": [
                "driver.css"
            ],
            "js": [
                "jquery.js",
                "jquery.scrollTo.js",
                "driver.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/Xbox360_Button_A.png",
        "controller.js"
    ],
    "icons": {
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    }
}