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 là gì?
YouTube Scrubbing Rate Controller là một tiện ích mở rộng Chrome được phát triển bởi Isaac Bartlett, và tính năng chính của nó là "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Scrubbing Rate Controller
Tải xuống các tệp mở rộng YouTube Scrubbing Rate Controller dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Scrubbing Rate Controller |
ID | mbigoenlkbemdkkjhdpmcbkejihhjbnh |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh |
Mô tả | An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys |
Kích Thước Tệp | 17.19 KB |
Số Lần Cài Đặt | 45 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2020-03-11 |
Ngày Phát Hành | 2020-03-10 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Isaac Bartlett |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |