Netflix Navigator
Navigate Netflix with your keyboard or game controller
Hvad er Netflix Navigator?
Netflix Navigator er en Chrome-udvidelse udviklet af Chris Heald, og dens hovedfunktion er "Navigate Netflix with your keyboard or game controller".
Udvidelsesskærmbilleder
Download Netflix Navigator-udvidelses-CRX-fil
Download Netflix Navigator-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/
Grundlæggende oplysninger om udvidelsen
Navn | Netflix Navigator |
ID | baifcdmbdpacahdlfeamhgijijeflmlh |
Officiel URL | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh |
Beskrivelse | Navigate Netflix with your keyboard or game controller |
Filstørrelse | 110 KB |
Antal Installationer | 135 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2015-01-27 |
Udgivelsesdato | 2015-01-26 |
Bedømmelse | 2.44/5 Samlet 9 Bedømmelser |
Udvikler | Chris Heald |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/cheald/NetflixNavigator/ |
Understøttede Sprog | 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" } } |