Netflix Navigator
Navigate Netflix with your keyboard or game controller
什麼是Netflix Navigator?
Netflix Navigator是由Chris Heald開發的Chrome擴展程式,該擴展的主要功能是“Navigate Netflix with your keyboard or game controller”。
擴展截圖
下載Netflix Navigator擴展crx文件
下載Netflix Navigator擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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/
擴展基本資訊
名稱 | Netflix Navigator |
ID | baifcdmbdpacahdlfeamhgijijeflmlh |
官方網址 | https://chromewebstore.google.com/detail/netflix-navigator/baifcdmbdpacahdlfeamhgijijeflmlh |
簡介 | Navigate Netflix with your keyboard or game controller |
檔案大小 | 110 KB |
安裝次數 | 135 |
目前版本 | 1.0.1 |
更新時間 | 2015-01-27 |
上架時間 | 2015-01-26 |
評分 | 2.44/5 共 9 次評分 |
開發者 | Chris Heald |
付費類型 | free |
擴展官網 | https://github.com/cheald/NetflixNavigator/ |
支援的語言 | 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" } } |