Netflix Navigator

Navigate Netflix with your keyboard or game controller

Qu'est-ce que Netflix Navigator ?

Netflix Navigator est une extension Chrome développée par Chris Heald, et sa fonction principale est "Navigate Netflix with your keyboard or game controller".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Netflix Navigator

Téléchargez les fichiers d'extension Netflix Navigator au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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/                    

Informations de Base sur l'Extension

Nom Netflix Navigator Netflix Navigator
ID baifcdmbdpacahdlfeamhgijijeflmlh
URL Officiel https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh
Description Navigate Netflix with your keyboard or game controller
Taille du Fichier 110 KB
Nombre d'Installations 135
Version Actuelle 1.0.1
Dernière Mise à Jour 2015-01-27
Date de Publication 2015-01-26
Évaluation 2.44/5 Total 9 Évaluations
Développeur Chris Heald
Type de Paiement free
Site Web de l'Extension https://github.com/cheald/NetflixNavigator/
Langues Prises en Charge 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"
    }
}