Netflix Navigator
Navigate Netflix with your keyboard or game controller
Apa itu Netflix Navigator?
Netflix Navigator adalah ekstensi Chrome yang dikembangkan oleh Chris Heald, dan fitur utamanya adalah "Navigate Netflix with your keyboard or game controller".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Netflix Navigator
Unduh file ekstensi Netflix Navigator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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/
Informasi Dasar Ekstensi
Nama | Netflix Navigator |
ID | baifcdmbdpacahdlfeamhgijijeflmlh |
URL Resmi | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh |
Deskripsi | Navigate Netflix with your keyboard or game controller |
Ukuran File | 110 KB |
Jumlah Instalasi | 135 |
Versi Saat Ini | 1.0.1 |
Terakhir Diperbarui | 2015-01-27 |
Tanggal Publikasi | 2015-01-26 |
Penilaian | 2.44/5 Total 9 Penilaian |
Pengembang | Chris Heald |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/cheald/NetflixNavigator/ |
Bahasa yang Didukung | 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" } } |