Netflix Navigator

Navigate Netflix with your keyboard or game controller

O que é Netflix Navigator?

Netflix Navigator é uma extensão do Chrome desenvolvida por Chris Heald, e sua principal característica é "Navigate Netflix with your keyboard or game controller".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Netflix Navigator

Baixe arquivos de extensão Netflix Navigator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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/                    

Informações Básicas da Extensão

Nome Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
URL Oficial https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
Descrição Navigate Netflix with your keyboard or game controller
Tamanho do Arquivo 110 KB
Contagem de Instalações 135
Versão Atual 1.0.1
Última Atualização 2015-01-27
Data de Publicação 2015-01-26
Classificação 2.44/5 Total de 9 Avaliações
Desenvolvedor Chris Heald
Tipo de Pagamento free
Site da Extensão https://github.com/cheald/NetflixNavigator/
Idiomas Suportados 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"
    }
}