Volume Manager
Control any tab's volume separately
O que é Volume Manager?
Volume Manager é uma extensão do Chrome desenvolvida por coherence, e sua principal característica é "Control any tab's volume separately".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Volume Manager
Baixe arquivos de extensão Volume Manager 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
An open-source plugin to control any tab's volume separately. Do note that once you started modifying volume: - You cannot toggle fullscreen of this tab. This is due to the Chrome API limitation. - Your system may not go into sleep/suspend/monitor off because Chrome will mark the current tab is "capturing" and inhibit doing so. Source code: https://github.com/cjc7373/chrome-volume-manager
Informações Básicas da Extensão
Nome | Volume Manager |
ID | imhcgcnjkibjikdbdgnhclihigkooeaf |
URL Oficial | https://chromewebstore.google.com/detail/volume-manager/imhcgcnjkibjikdbdgnhclihigkooeaf |
Descrição | Control any tab's volume separately |
Tamanho do Arquivo | 171 KB |
Contagem de Instalações | 617 |
Versão Atual | 2.0.0 |
Última Atualização | 2023-11-18 |
Data de Publicação | 2021-03-05 |
Classificação | 4.83/5 Total de 6 Avaliações |
Desenvolvedor | coherence |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/cjc7373/chrome-volume-manager |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Volume Manager", "version": "2.0.0", "description": "Control any tab's volume separately", "permissions": [ "activeTab", "tabCapture", "offscreen" ], "action": { "default_icon": "icon.e84ebc53.png", "default_popup": "popup.c91b8cbb.html" }, "background": { "service_worker": "background.538a6b63.js" }, "icons": { "512": "icon.e84ebc53.png" }, "web_accessible_resources": [ { "resources": [ "offscreen.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |