Netflix Navigator

Navigate Netflix with your keyboard or game controller

Что такое Netflix Navigator?

Netflix Navigator - это расширение Chrome, разработанное Chris Heald, и его основная функция - "Navigate Netflix with your keyboard or game controller".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Netflix Navigator

Скачайте файлы расширений 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"
    }
}