Netflix Navigator
Navigate Netflix with your keyboard or game controller
Wat is Netflix Navigator?
Netflix Navigator is een Chrome-extensie ontwikkeld door Chris Heald, en de belangrijkste functie is "Navigate Netflix with your keyboard or game controller".
Extensie Screenshots
Download het CRX-bestand van de extensie Netflix Navigator
Download Netflix Navigator-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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/
Basisinformatie over de Extensie
Naam | Netflix Navigator |
ID | baifcdmbdpacahdlfeamhgijijeflmlh |
Officiële URL | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh |
Beschrijving | Navigate Netflix with your keyboard or game controller |
Bestandsgrootte | 110 KB |
Aantal Installaties | 135 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2015-01-27 |
Publicatiedatum | 2015-01-26 |
Beoordeling | 2.44/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Chris Heald |
Betalingswijze | free |
Extensiewebsite | https://github.com/cheald/NetflixNavigator/ |
Ondersteunde Talen | 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" } } |