YouTube Accelerator
Accelerate your YouTube videos even faster!
YouTube Accelerator란 무엇입니까?
YouTube Accelerator은(는) AndrewGDX에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Accelerate your YouTube videos even faster!"입니다.
확장 프로그램 스크린샷
YouTube Accelerator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
There is no UI, only keyboard shortcuts. Use '<' and '>' buttons (without shift) to speed up or speed down the video, and press 'R' to reset to the default speed. You can change hotkeys in settings. YouTube Shorts acceleration is working as well. The plugin does not collect any statistics or personal data, feel free to use! Source code: https://github.com/AndrewGDX/YouTubeAccelerator
확장 프로그램 기본 정보
이름 | YouTube Accelerator |
ID | kkbkajnjcpgpfkhgkcckeaindpjgfgib |
공식 URL | https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib |
설명 | Accelerate your YouTube videos even faster! |
파일 크기 | 14.29 KB |
설치 횟수 | 251 |
현재 버전 | 0.6.0 |
최근 업데이트 | 2023-07-20 |
출시 날짜 | 2022-10-30 |
평점 | 5.00/5 총 3 개의 평점 |
개발자 | AndrewGDX |
이메일 | [email protected] |
개인정보 보호 정책 페이지 URL | https://andrewgdx.github.io/ChromeWebStorePolicy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Accelerator", "version": "0.6.0", "description": "Accelerate your YouTube videos even faster!", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "accelerator.css" ], "js": [ "accelerator_plugin.js" ] } ], "permissions": [ "storage" ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "settings.html" }, "manifest_version": 3 } |