YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
Cos'è YouTube Shorts Volume Control?
YouTube Shorts Volume Control è un'estensione di Chrome sviluppata da Priya, e la sua funzione principale è "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione YouTube Shorts Volume Control
Scarica i file di estensione YouTube Shorts Volume Control in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
URL Ufficiale | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
Descrizione | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
Dimensione del File | 4.57 KB |
Conteggio Installazioni | 68 |
Versione Corrente | 0.0.3 |
Ultimo Aggiornamento | 2023-11-25 |
Data di Pubblicazione | 2023-11-23 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Priya |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |