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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |