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文件
下载YouTube Scrubbing Rate Controller扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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" } } |