Youtube Speed Control Hotkeys
Allows you to customize your own speed control hotkeys in Youtube
Youtube Speed Control Hotkeys란 무엇입니까?
Youtube Speed Control Hotkeys은(는) krsntn에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows you to customize your own speed control hotkeys in Youtube"입니다.
확장 프로그램 스크린샷
Youtube Speed Control Hotkeys 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can customize your own hotkeys to speed up and speed down the playing video on youtube. This extension only works on youtube. ======================================================== Version 1.0.20 - Fixes initial load bug Version 1.0.19 - Migrate to Manifest V3 Version 1.0.18 - Bug fixes and performance improvements Version 1.0.9 - Remove "Seek backward & forward" feature from extension, as Youtube had include this feature in the latest update. Version 1.0.8 - Added inactive icon Version 1.0.7 - Seek backward & forward works even the focus element is not on video player Version 1.0.6 - New configuration effect immediate change without the needs of refreshing page Version 1.0.1 - Updated on configuration UI display Version 1.0 - Basic customization that allows you to customize your own hotkeys of changing youtube playback speed rate.
확장 프로그램 기본 정보
이름 | Youtube Speed Control Hotkeys |
ID | opcjoeippmphadnkmkjocmingcbpmepn |
공식 URL | https://chromewebstore.google.com/detail/youtube-speed-control-hot/opcjoeippmphadnkmkjocmingcbpmepn |
설명 | Allows you to customize your own speed control hotkeys in Youtube |
파일 크기 | 578 KB |
설치 횟수 | 490 |
현재 버전 | 1.0.20 |
최근 업데이트 | 2024-01-04 |
출시 날짜 | 2020-06-10 |
평점 | 4.17/5 총 6 개의 평점 |
개발자 | krsntn |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube Speed Control Hotkeys", "version": "1.0.20", "description": "Allows you to customize your own speed control hotkeys in Youtube", "icons": { "128": "\/images\/icon128.png" }, "permissions": [ "storage" ], "action": { "default_popup": "index.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "css": [ "content.css" ], "js": [ "contentScript.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.js" }, "manifest_version": 3 } |