YouTube Shorts Volume Control
Allows a convenient slider based UI element for controlling volume in youtube shorts UI
O que é YouTube Shorts Volume Control?
YouTube Shorts Volume Control é uma extensão do Chrome desenvolvida por Priya, e sua principal característica é "Allows a convenient slider based UI element for controlling volume in youtube shorts UI".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão YouTube Shorts Volume Control
Baixe arquivos de extensão YouTube Shorts Volume Control no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | YouTube Shorts Volume Control |
ID | iocnlgcooancaojnpkonjpcocmcjkgle |
URL Oficial | https://chromewebstore.google.com/detail/youtube-shorts-volume-con/iocnlgcooancaojnpkonjpcocmcjkgle |
Descrição | Allows a convenient slider based UI element for controlling volume in youtube shorts UI |
Tamanho do Arquivo | 4.57 KB |
Contagem de Instalações | 68 |
Versão Atual | 0.0.3 |
Última Atualização | 2023-11-25 |
Data de Publicação | 2023-11-23 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Priya |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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 } |