Netflix Navigator
Navigate Netflix with your keyboard or game controller
Was ist Netflix Navigator?
Netflix Navigator ist eine Chrome-Erweiterung, die von Chris Heald entwickelt wurde, und ihr Hauptmerkmal ist "Navigate Netflix with your keyboard or game controller".
Erweiterungsscreenshots
Netflix Navigator-Erweiterungs-CRX-Datei herunterladen
Laden Sie Netflix Navigator-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        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/                     Grundlegende Informationen zur Erweiterung
| Name |  | 
| ID | baifcdmbdpacahdlfeamhgijijeflmlh | 
| Offizielle URL | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh | 
| Beschreibung | Navigate Netflix with your keyboard or game controller | 
| Dateigröße | 110 KB | 
| Installationsanzahl | 135 | 
| Aktuelle Version | 1.0.1 | 
| Letztes Update | 2015-01-27 | 
| Veröffentlichungsdatum | 2015-01-26 | 
| Bewertung | 2.44/5 Insgesamt 9 Bewertungen | 
| Entwickler | Chris Heald | 
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/cheald/NetflixNavigator/ | 
| Unterstützte Sprachen | 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"
    }
} | |