Netflix Navigator

Navigate Netflix with your keyboard or game controller

Cos'è Netflix Navigator?

Netflix Navigator è un'estensione di Chrome sviluppata da Chris Heald, e la sua funzione principale è "Navigate Netflix with your keyboard or game controller".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Netflix Navigator

Scarica i file di estensione Netflix Navigator in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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/                    

Informazioni di Base sull'Estensione

Nome Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
URL Ufficiale https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
Descrizione Navigate Netflix with your keyboard or game controller
Dimensione del File 110 KB
Conteggio Installazioni 135
Versione Corrente 1.0.1
Ultimo Aggiornamento 2015-01-27
Data di Pubblicazione 2015-01-26
Valutazione 2.44/5 Totale 9 Valutazioni
Sviluppatore Chris Heald
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/cheald/NetflixNavigator/
Lingue Supportate 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"
    }
}