Netflix Navigator

Navigate Netflix with your keyboard or game controller

Netflix Navigatorとは何ですか?

Netflix NavigatorはChris Healdによって開発されたChromeの拡張機能で、その主な機能は「Navigate Netflix with your keyboard or game controller」です。

拡張機能のスクリーンショット

screenshot

Netflix Navigator拡張機能のCRXファイルをダウンロード

Netflix Navigator拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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/                    

拡張機能の基本情報

名前 Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
公式URL https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
説明 Navigate Netflix with your keyboard or game controller
ファイルサイズ 110 KB
インストール数 135
現在のバージョン 1.0.1
最終更新日 2015-01-27
公開日 2015-01-26
評価 2.44/5 合計 9 レビュー
開発者 Chris Heald
支払い方法 free
拡張機能のウェブサイト https://github.com/cheald/NetflixNavigator/
対応言語 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"
    }
}