YouTube Rewind & Fast Forward Buttons
Add Rewind & Fast Forward buttons to videos player in a YouTube site
YouTube Rewind & Fast Forward Buttons란 무엇입니까?
YouTube Rewind & Fast Forward Buttons은(는) Mendy Leizerovich에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add Rewind & Fast Forward buttons to videos player in a YouTube site"입니다.
확장 프로그램 스크린샷
YouTube Rewind & Fast Forward Buttons 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Enhance your YouTube experience with the Rewind & Fast Forward Chrome extension. This tool adds dedicated buttons to rewinding and fast forwarding the video. Features: 1. Customizable Time Skips: Choose the number of seconds you skip with each button individually. 2. Arrow Key Override: Decide whether to synchronize arrow keys with the extension buttons' seconds. (Default: No override) 3. Media Key Integration: Optimize control by mapping the keyboard media keys to mirror the extension buttons' behavior. How to Access the Options Page: 1. If you've pinned the extension, click the extension icon and select "Options". 2. If you haven't pinned it, click the Chrome extension icon, then click the three dots near the "YouTube Rewind & Fast Forward Buttons" extension, and select "Options." (Refer to the picture for guidance.)
확장 프로그램 기본 정보
이름 | YouTube Rewind & Fast Forward Buttons |
ID | bmdiaadnpgbbfepggiiajgadlhhcphgk |
공식 URL | https://chromewebstore.google.com/detail/youtube-rewind-fast-forwa/bmdiaadnpgbbfepggiiajgadlhhcphgk |
설명 | Add Rewind & Fast Forward buttons to videos player in a YouTube site |
파일 크기 | 26.56 KB |
설치 횟수 | 4,285 |
현재 버전 | 1.3.0 |
최근 업데이트 | 2023-11-20 |
출시 날짜 | 2019-09-02 |
평점 | 4.34/5 총 38 개의 평점 |
개발자 | Mendy Leizerovich |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/mendz/youtube-fast-rewind-forward-buttons |
도움말 페이지 URL | https://github.com/mendz/youtube-fast-rewind-forward-buttons/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "short_name": "YouTube Rewind&Forward Buttons", "name": "YouTube Rewind & Fast Forward Buttons", "description": "Add Rewind & Fast Forward buttons to videos player in a YouTube site", "version": "1.3.0", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content.f741d4b5.js" ], "css": [ "content-styles.38bd2867.css" ], "run_at": "document_idle" } ], "icons": { "16": "fast-forward-16.54be20a9.png", "32": "fast-forward-32.6cc32f25.png", "48": "fast-forward-48.a3f2e56e.png", "60": "fast-forward-60.56095b1b.png", "128": "fast-forward-128.c3a65c3e.png" }, "permissions": [ "storage" ], "options_ui": { "page": "options.5dee1b9e.html", "open_in_tab": true, "browser_style": true }, "web_accessible_resources": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "resources": [] } ] } |