VRV Speed Controls
Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button…
¿Qué es VRV Speed Controls?
VRV Speed Controls es una extensión de Chrome desarrollada por Yuudaari, y su función principal es "Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión VRV Speed Controls
Descarga archivos de extensión VRV Speed Controls 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
Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button decreases the speed by 0.5x. The speed is retained between videos, and sessions, in chrome storage. I mainly made this extension for myself, and I didn't need anything fancy. Report any bugs to the GitHub. Changelog: v1.1.0 — Added a "next video" button. The button will always appear even if there is no next video. The functionality should never break, however, as it simply seeks to the end of the video and plays. This allows VRV to handle the "end of video" as per normal. v1.1.1 — Made the speed on the icon more readable. v1.1.2 — Fixed the "next video" button not always working. (Isn't that ironic, in the intial version I said it would never break! TBH, no idea why it did break. I'm going to blame VRV for being bad.)
Información Básica de la Extensión
Nombre | VRV Speed Controls |
ID | bblbllniiehfgibhedbmpkkeinppciln |
URL Oficial | https://chromewebstore.google.com/detail/vrv-speed-controls/bblbllniiehfgibhedbmpkkeinppciln |
Descripción | Adds a speed button to the VRV player. Clicking the button increases the speed by 0.5x, with a max of 3x. Right clicking the button… |
Tamaño del Archivo | 9.98 KB |
Cantidad de Instalaciones | 381 |
Versión Actual | 1.1.2 |
Última Actualización | 2019-02-24 |
Fecha de Publicación | 2019-02-23 |
Calificación | 4.75/5 Total de 4 Calificaciones |
Desarrollador | Yuudaari |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/Yuudaari/VrvSpeedControls |
URL de la Página de Ayuda | https://github.com/Yuudaari/VrvSpeedControls/issues |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "VRV Speed Controls", "short_name": "VrvSpeedControls", "version": "1.1.2", "content_scripts": [ { "matches": [ "https:\/\/static.vrv.co\/*" ], "js": [ "index.js" ], "all_frames": true } ], "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |