Netflix Keyboard Controller
A Chrome Extension aiming to add keyboard navigation to the netflix web ui.
什麼是Netflix Keyboard Controller?
Netflix Keyboard Controller是由rddmdev開發的Chrome擴展程式,該擴展的主要功能是“A Chrome Extension aiming to add keyboard navigation to the netflix web ui.”。
擴展截圖
下載Netflix Keyboard Controller擴展crx文件
下載Netflix Keyboard Controller擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
*** Important *** This extension is broken no longer being actively maintained/developed. Before I got a TV with Netflix built in I was working on season/episode selection and a settings modal to toggle options on/off such as auto-skip, and mouse hide/auto full screen. Since I was in the middle of it and don't have time to complete this the current commit I was working from is pretty broken. I will clean up the source and post it on GitHub when I get some free time, but for now consider this extension dead and to be removed once I have cleaned up the source and put it up for anyone who wants to continue development. A simple extension that adds arrow key navigation to the Netflix web user interface. Mainly made for media center users who don't want to rely on their mouse for navigating through Netflix. I couldn't find anything that added this feature to Netflix, which worked for me, so I made this. This is a simple personal project. I hope people find it useful. Features: You can use the arrow keys to navigate! Automatically hide your inactive mouse. Auto-skips intro. Shortcut Keys: Shift + F to search for shows (from browse page, Escape cancels search) Shift + S to switch profiles (from browse page) Backspace to go back (from anywhere, will perform a browser back) Updates: 10/09/2021 -Updated description, This extension is deprecated, more info at top of description. 14/02/2021 -fixed not being able to navigate forward and backward in slider. Shouldn't jump to the top of the list when trying to navigate across now, I hope. 29 July 2020 -fixed a mistake caused select to stop working 28 July 2020 -added mouse hide feature, auto-hides when idle 02 June 2020 -fixed losing selector when going next and there are no available options there. -removed sound fade in/out on auto skip-intro (it was buggy so has been disabled) -pressing up on to go to first slider now scrolls it into centre instead of scrolling to top of page Some Notes: I couldn't get smooth-scroll working properly - it was scrolling to the wrong part of the screen when items were out of range and generally wasn't dependable, so it will probably remain as is going forward. When cancelling a search I had issues resetting the state of the search input, to avoid that it will just reload the browse page on cancel. Nice to have features that I can work on if the extension is popular and I have the time: Title information/trailers - right now there is no expanded information. My goal was to get something usable for keyboard navigation working ASAP. Expanding menus added extra complexity that would add to release time. Maybe a menu to switch it on/off for the current browser, or disable auto skip intro. Potential issues: I have only tested in English. Language other than English may have issues. Netflix revising its layout format/class names may break things. I use this extension so I will update if this happens.
擴展基本資訊
名稱 | |
ID | nibkggkdfchkbheopkgbdmfommpaebco |
官方網址 | https://chrome.google.com/webstore/detail/netflix-keyboard-controll/nibkggkdfchkbheopkgbdmfommpaebco |
簡介 | A Chrome Extension aiming to add keyboard navigation to the netflix web ui. |
檔案大小 | 10.93 KB |
安裝次數 | 110 |
目前版本 | 0.9.6 |
更新時間 | 2021-09-10 |
上架時間 | 2020-06-02 |
評分 | 5.00/5 共 5 次評分 |
開發者 | rddmdev |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | http://45.76.117.72:3000/privacy |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Netflix Keyboard Controller", "description": "A Chrome Extension aiming to add keyboard navigation to the netflix web ui.", "version": "0.9.6", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "storage" ], "page_action": { "default_icon": { "38": "icon16.png" }, "default_title": "Netflix Keyboard Controller" }, "content_scripts": [ { "matches": [ "https:\/\/www.netflix.com\/*" ], "css": [ "myStyles.css" ], "js": [ "content.js" ] } ], "short_name": "NKC" } |