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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |