AutoMute
Automatically mutes each new tab the instant it is opened.
O que é AutoMute?
AutoMute é uma extensão do Chrome desenvolvida por danbhentschel, e sua principal característica é "Automatically mutes each new tab the instant it is opened.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AutoMute
Baixe arquivos de extensão AutoMute 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
Are you getting tired of obnoxious ads blaring sound while you're browsing? AutoMute automatically mutes every tab opened in your browser, effectively allowing you to opt-in to hear audio in a web page, instead of forcing you to opt-out.
Informações Básicas da Extensão
Nome | AutoMute |
ID | kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
URL Oficial | https://chromewebstore.google.com/detail/automute/kjcdcbhfpjkcjinohfaaihpcmpnpmpie |
Descrição | Automatically mutes each new tab the instant it is opened. |
Tamanho do Arquivo | 72.51 KB |
Contagem de Instalações | 11,057 |
Versão Atual | 2.1.1 |
Última Atualização | 2017-04-10 |
Data de Publicação | 2017-04-10 |
Classificação | 4.30/5 Total de 92 Avaliações |
Desenvolvedor | danbhentschel |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AutoMute", "description": "Automatically mutes each new tab the instant it is opened.", "version": "2.1.1", "permissions": [ "tabs", "storage", "notifications" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "19": "Speaker_19.png", "38": "Speaker_38.png" }, "default_title": "AutoMute", "default_popup": "browserAction.html" }, "commands": { "mute-all": { "suggested_key": { "default": "Alt+Shift+L" }, "description": "Mute all tabs" }, "mute-tab": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "Mute current tab" }, "mute-other": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "Mute other tabs" } }, "icons": { "16": "Speaker_16.png", "48": "Speaker_48.png", "128": "Speaker_128.png" }, "options_ui": { "page": "options.html", "chrome_style": true } } |