YouTube Scrubbing Rate Controller
An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys
YouTube Scrubbing Rate Controller란 무엇입니까?
YouTube Scrubbing Rate Controller은(는) Isaac Bartlett에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys"입니다.
확장 프로그램 스크린샷
YouTube Scrubbing Rate Controller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Traditionally, when watching a YouTube video, the user can press either of the arrow keys to skip 5 seconds of the video in either direction. This Chrome extension can be used to control the scrubbing rate on YouTube when pressing the arrow keys. With this extension, the user is no longer limited to scrubbing through a video 5 seconds at a time but rather they can chose from a variety of speeds. To use this extension, hold the Ctrl key on your keyboard when pressing either of the arrow keys.
확장 프로그램 기본 정보
이름 | YouTube Scrubbing Rate Controller |
ID | mbigoenlkbemdkkjhdpmcbkejihhjbnh |
공식 URL | https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh |
설명 | An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys |
파일 크기 | 17.19 KB |
설치 횟수 | 45 |
현재 버전 | 1.0 |
최근 업데이트 | 2020-03-11 |
출시 날짜 | 2020-03-10 |
평점 | 3.50/5 총 2 개의 평점 |
개발자 | Isaac Bartlett |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Scrubbing Rate Controller", "short_name": "TYSRC", "version": "1.0", "description": "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys", "permissions": [ "declarativeContent", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon16.png", "128": "images\/icon128.png" } }, "icons": { "16": "images\/icon16.png", "128": "images\/icon128.png" } } |