Tab Volume
Volume control within a browser tab
O que é Tab Volume?
Tab Volume é uma extensão do Chrome desenvolvida por wokalek, e sua principal característica é "Volume control within a browser tab".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Volume
Baixe arquivos de extensão Tab Volume 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
A convenient and eye-pleasing extension for controlling the sound volume in a browser tab. 🍙 Increase or decrease volume within a browser tab 🍥 Set any upper limit for audio volume scaling 🍣 List of tabs on which you have changed the volume for easy switching between them 🍤 Restore tab volume with one click 🍢 Change volume with hotkeys Ctrl + Shift + ArrowUp/ArrowDown The extension is completely free and open source. The link to the code can be found in "Settings" under the "About extension" button.
Informações Básicas da Extensão
Nome | Tab Volume |
ID | nfconmpaofmnebmmnoinlbgfocaimkah |
URL Oficial | https://chromewebstore.google.com/detail/tab-volume/nfconmpaofmnebmmnoinlbgfocaimkah |
Descrição | Volume control within a browser tab |
Tamanho do Arquivo | 73.1 KB |
Contagem de Instalações | 152 |
Versão Atual | 1.0.5 |
Última Atualização | 2024-03-03 |
Data de Publicação | 2023-08-18 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | wokalek |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/wokalek/tab-volume |
URL da Página de Ajuda | https://github.com/wokalek/tab-volume/issues/new |
Idiomas Suportados | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_manifest_name__", "version": "1.0.5", "default_locale": "en", "description": "__MSG_manifest_description__", "author": "[email protected]", "minimum_chrome_version": "116", "icons": { "16": "favicons\/16.png", "32": "favicons\/32.png", "48": "favicons\/48.png", "128": "favicons\/128.png" }, "permissions": [ "activeTab", "tabCapture", "offscreen", "storage" ], "action": { "default_popup": "src\/pages\/popup.html" }, "background": { "service_worker": "service-worker-loader.js", "type": "module" }, "commands": { "VOLUME_UP": { "description": "__MSG_manifest_commands_volume_up__", "suggested_key": { "default": "Ctrl+Shift+Up" } }, "VOLUME_DOWN": { "description": "__MSG_manifest_commands_volume_down__", "suggested_key": { "default": "Ctrl+Shift+Down" } } } } |