Video playback rate control for YouTube™
Controls the playback rate of YouTube videos more extensively
Video playback rate control for YouTube™란 무엇입니까?
Video playback rate control for YouTube™은(는) sweet에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Controls the playback rate of YouTube videos more extensively"입니다.
확장 프로그램 스크린샷
Video playback rate control for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provides useful features when playing YouTube This extension only works with keyboard shortcuts. 🔹 This extension is a third party, not the official extension of YouTube. 🔹 - Controls the playback rate of YouTube videos more extensively (up to 16x) Use the same shortcuts as youtube ui ( < , > ) - Custom seektime Rewind/Fast forward (SHIFT + ←, SHIFT + →) (for mac: ⌘ + ←, ⌘+ →) (1~4 sec available) ⚠️Custom seektime Rewind/Fast forward is Changed to (SHIFT+Arrow) shortcut. because the (CTRL+Arrow) is a shortcut for seek chapters.
확장 프로그램 기본 정보
이름 | Video playback rate control for YouTube™ |
ID | nhmbfmdoocndmmdjkmoecaeknicggffl |
공식 URL | https://chromewebstore.google.com/detail/video-playback-rate-contr/nhmbfmdoocndmmdjkmoecaeknicggffl |
설명 | Controls the playback rate of YouTube videos more extensively |
파일 크기 | 17.43 KB |
설치 횟수 | 6,228 |
현재 버전 | 0.1.14 |
최근 업데이트 | 2023-12-06 |
출시 날짜 | 2019-12-06 |
평점 | 4.78/5 총 9 개의 평점 |
개발자 | sweet |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "0.1.14", "minimum_chrome_version": "88", "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "\/script.js" ], "run_at": "document_end", "all_frames": true } ], "action": { "default_title": "__MSG_appName__", "default_icon": "icon128.png", "default_popup": "options.html" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 3 } |