Video Controls Max
This plugin provide extra video controls for youtube
Video Controls Max란 무엇입니까?
Video Controls Max은(는) Manjot Singh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This plugin provide extra video controls for youtube"입니다.
확장 프로그램 스크린샷
Video Controls Max 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This plugin gives you extra control for your youtube video. Extra Controls given right now are:- 1. Forward: Forward by 10 sec 2. Backward: Backward by 10 sec 3. Speed+: Increase speed of video ( max 15.5x) 4. Speed-: Decrease speed of video ( min 0.5x) 5. Reverse: Reverse your Video 6. Stop Reverse: Stop Reversing video
확장 프로그램 기본 정보
이름 | |
ID | ofcelndgcapgcjldffldonbefaoddhjn |
공식 URL | https://chrome.google.com/webstore/detail/video-controls-max/ofcelndgcapgcjldffldonbefaoddhjn |
설명 | This plugin provide extra video controls for youtube |
파일 크기 | 14.74 KB |
설치 횟수 | 153 |
현재 버전 | 1.2 |
최근 업데이트 | 2019-03-12 |
출시 날짜 | 2019-03-12 |
평점 | 3.67/5 총 6 개의 평점 |
개발자 | Manjot Singh |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Controls Max", "version": "1.2", "description": "This plugin provide extra video controls for youtube", "permissions": [ "activeTab", "declarativeContent", "storage", "webNavigation", "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "insertPlayerButtons.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "icons": { "16": "images\/logo.png", "32": "images\/logo.png", "48": "images\/logo.png", "128": "images\/logo.png" }, "manifest_version": 2 } |