Gamepad for Plex Web
Control Plex.tv from the comfort of your couch with this gamepad extension!
Gamepad for Plex Web란 무엇입니까?
Gamepad for Plex Web은(는) danchowdhury에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control Plex.tv from the comfort of your couch with this gamepad extension!"입니다.
확장 프로그램 스크린샷
Gamepad for Plex Web 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension adds basic gamepad support to the Plex.tv Web interface! FEATURES OF CURRENT RELEASE: * Support for various popular controllers (only 360 controller has been tested) * Scroll through episodes when in single episode view * Play, pause, stop, rewind and go full screen with your gamepad (See screenshot for controls). Note: If the controller doesn't work at first, try Refreshing your browser or pressing the A/X button on your controller. This extension doesn't support general browsing of the Plex interface using a controller. This might happen in future, but the main purpose is so that you can browse to your media, blow it up on screen then sit back! You can use something like Plex Home Theater if you want complete remote control support. PERMISSIONS: Inject gamepad support into any web page that is found to be Plex Web.
확장 프로그램 기본 정보
이름 | |
ID | haoeganpancihdffhohfeeeejpbahlld |
공식 URL | https://chrome.google.com/webstore/detail/gamepad-for-plex-web/haoeganpancihdffhohfeeeejpbahlld |
설명 | Control Plex.tv from the comfort of your couch with this gamepad extension! |
파일 크기 | 41.87 KB |
설치 횟수 | 514 |
현재 버전 | 1.3 |
최근 업데이트 | 2016-06-09 |
출시 날짜 | 2016-06-09 |
평점 | 3.25/5 총 4 개의 평점 |
개발자 | danchowdhury |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Gamepad for Plex Web", "author": "Dan Chowdhury", "version": "1.3", "description": "Control Plex.tv from the comfort of your couch with this gamepad extension!", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "fullscreen.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "main.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "lib\/jquery.min.js", "lib\/gamepad.min.js", "plex_injection.js" ], "permissions": [ "activeTab" ] } |