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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
*** 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 |
공식 URL | 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" } |