Netflix Navigator
Navigate Netflix with your keyboard or game controller
Netflix Navigatorคืออะไร?
Netflix Navigator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Chris Heald และคุณลักษณะหลักของมันคือ "Navigate Netflix with your keyboard or game controller"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Netflix Navigator
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |