YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
¿Qué es YouTube Shorts Volume Control?
YouTube Shorts Volume Control es una extensión de Chrome desarrollada por Priya, y su función principal es "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión YouTube Shorts Volume Control
Descarga archivos de extensión YouTube Shorts Volume Control 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
This extension caters to everyone who is searching for a extension to control the volume of youtube shorts in their PC. This functionaility is currently missing on web based UI on laptops and PCs. This extension adds an UI element, as a convenient range slider that helps the user to control the volume of youtube shorts in a fine grained manner. Fixed some small bugs.
Información Básica de la Extensión
Nombre | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
URL Oficial | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
Descripción | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
Tamaño del Archivo | 4.57 KB |
Cantidad de Instalaciones | 68 |
Versión Actual | 0.0.3 |
Última Actualización | 2023-11-25 |
Fecha de Publicación | 2023-11-23 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Priya |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Shorts Volume Control", "version": "0.0.3", "description": "Allows a convenient slider based UI element for controlling volume in youtube shorts UI", "permissions": [ "tabs" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "action": { "default_icon": [], "default_title": "Youtube Shorts Vol Control", "default_popup": "popup.html" }, "manifest_version": 3 } |