Netflix Controller Support
Allows one to control a netflix watch page with an xbox (only tested) controller.
Netflix Controller Support란 무엇입니까?
Netflix Controller Support은(는) http://aubronwood.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows one to control a netflix watch page with an xbox (only tested) controller."입니다.
Netflix Controller Support 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is intended to be used with NetfliXBMC - An XBMC plugin that opens chrome in kiosk mode on netflix watch pages as a method of playing netflix via XBMC. This extension allows you to use an xbox 360 controller with that page, including support for seeking, volume up/down, and closing chrome. Please report any bugs to https://github.com/Aubron/Netflix-Controller
확장 프로그램 기본 정보
이름 | |
ID | flakmgbknagcohphpoogebajjbmlmngh |
공식 URL | https://chrome.google.com/webstore/detail/netflix-controller-suppor/flakmgbknagcohphpoogebajjbmlmngh |
설명 | Allows one to control a netflix watch page with an xbox (only tested) controller. |
파일 크기 | 46.4 KB |
설치 횟수 | 157 |
현재 버전 | 0.1 |
최근 업데이트 | 2014-10-13 |
출시 날짜 | 2014-10-13 |
평점 | 2.80/5 총 10 개의 평점 |
개발자 | http://aubronwood.com |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "exclude_globs": [], "exclude_matches": [], "include_globs": [], "js": [ "jquery.js", "script.js" ], "matches": [ "http:\/\/www.netflix.com\/WiPlayer*" ], "run_at": "document_idle" } ], "icons": { "48": "netflix48.png", "128": "netflix128.png" }, "description": "Allows one to control a netflix watch page with an xbox (only tested) controller.", "name": "Netflix Controller Support", "version": "0.1", "permissions": [ "tabs" ] } |