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
¿Qué es YouTube Scrubbing Rate Controller?
YouTube Scrubbing Rate Controller es una extensión de Chrome desarrollada por Isaac Bartlett, y su función principal es "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Scrubbing Rate Controller
Descarga archivos de extensión YouTube Scrubbing Rate Controller en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | YouTube Scrubbing Rate Controller |
ID | mbigoenlkbemdkkjhdpmcbkejihhjbnh |
URL Oficial | https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh |
Descripción | An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys |
Tamaño del Archivo | 17.19 KB |
Cantidad de Instalaciones | 45 |
Versión Actual | 1.0 |
Última Actualización | 2020-03-11 |
Fecha de Publicación | 2020-03-10 |
Calificación | 3.50/5 Total de 2 Calificaciones |
Desarrollador | Isaac Bartlett |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } } |