Mute Notifications
Disable all desktop notifications with one click.
O que é Mute Notifications?
Mute Notifications é uma extensão do Chrome desenvolvida por Ondřej Cífka, e sua principal característica é "Disable all desktop notifications with one click.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mute Notifications
Baixe arquivos de extensão Mute Notifications 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 adds a button to Chrome that turns off desktop notifications for all web pages. When the button is clicked again, the original notification settings are restored.
Informações Básicas da Extensão
Nome | Mute Notifications |
ID | bmjdeaihnngnnnaldgakphcaanioohgn |
URL Oficial | https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn |
Descrição | Disable all desktop notifications with one click. |
Tamanho do Arquivo | 17.44 KB |
Contagem de Instalações | 5,077 |
Versão Atual | 0.3 |
Última Atualização | 2019-12-20 |
Data de Publicação | 2019-12-20 |
Classificação | 4.47/5 Total de 19 Avaliações |
Desenvolvedor | Ondřej Cífka |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/cifkao/chrome-mute-notifications |
URL da Página de Ajuda | https://github.com/cifkao/chrome-mute-notifications |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mute Notifications", "description": "Disable all desktop notifications with one click.", "version": "0.3", "icons": { "128": "logo-128.png", "48": "logo-48.png" }, "permissions": [ "contentSettings", "storage" ], "browser_action": { "default_icon": { "19": "icon-on-19.png", "38": "icon-on-38.png" } }, "background": { "scripts": [ "background.js" ] } } |