HTML5 Speedy Video
This extension adds fine-grained playback speed control on HTML5 videos.
HTML5 Speedy Video란 무엇입니까?
HTML5 Speedy Video은(는) ricardobcl에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension adds fine-grained playback speed control on HTML5 videos."입니다.
확장 프로그램 스크린샷
HTML5 Speedy Video 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
It also adds these simple keyboard shortcuts: | Key | Action | | ------------------ | ---------------------- | | control + `+` | Speed up by 0.2x | | control + `-` | Slow down by 0.2x | | control + `0` | Set speed to 1x | | control + `1` | Set speed to 1x | | control + `2` | Set speed to 2x | | control + `3` | Set speed to 2.5x | | control + `4` | Set speed to 3x | | shift + :arrow_left: | \*\* Rewind 2 seconds | | shift + :arrow_right: | \*\* Skip 2 seconds | | shift + :arrow_down: | \*\* Rewind 10 seconds | | shift + :arrow_up: | \*\* Skip 10 seconds |
확장 프로그램 기본 정보
이름 | HTML5 Speedy Video |
ID | caogcofklddclhfojcbmccggaohjngmh |
공식 URL | https://chromewebstore.google.com/detail/html5-speedy-video/caogcofklddclhfojcbmccggaohjngmh |
설명 | This extension adds fine-grained playback speed control on HTML5 videos. |
파일 크기 | 42.12 KB |
설치 횟수 | 541 |
현재 버전 | 2.1 |
최근 업데이트 | 2018-09-06 |
출시 날짜 | 2018-09-06 |
평점 | 4.00/5 총 3 개의 평점 |
개발자 | ricardobcl |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ricardobcl/HTML5-Speedy-Video-Extension |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "HTML5 Speedy Video", "version": "2.1", "description": "This extension adds fine-grained playback speed control on HTML5 videos.", "offline_enabled": true, "icons": { "32": "icons\/Icon-32.png", "64": "icons\/Icon-64.png", "128": "icons\/Icon-128.png", "256": "icons\/Icon-256.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.netflix.com\/*", "https:\/\/www.netflix.com\/*", "http:\/\/vimeo.com\/*", "https:\/\/vimeo.com\/*", "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_idle", "css": [ "style.css" ], "js": [ "speedy.js" ] } ] } |