Notification Muter

This extension will mute notifications

O que é Notification Muter?

Notification Muter é uma extensão do Chrome desenvolvida por mfreedman, e sua principal característica é "This extension will mute notifications".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Notification Muter

Baixe arquivos de extensão Notification Muter 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 will block notifications and popups for all urls.

It will also temporarily remove javascript alerts for calendar.google.com

When unmuted will stop this extension from managing your notifications & popups.                    

Informações Básicas da Extensão

Nome Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
URL Oficial https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Descrição This extension will mute notifications
Tamanho do Arquivo 27.62 KB
Contagem de Instalações 176
Versão Atual 0.0.3.18
Última Atualização 2017-06-07
Data de Publicação 2017-06-07
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor mfreedman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/mikfreedman/notification-muter
URL da Página de Ajuda https://github.com/mikfreedman/notification-muter/blob/master/README.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "notification-muter",
    "name": "Notification Muter",
    "version": "0.0.3.18",
    "manifest_version": 2,
    "description": "This extension will mute notifications",
    "homepage_url": "http:\/\/github.com\/mikfreedman\/notification-muter",
    "icons": {
        "16": "icons\/bell.png",
        "48": "icons\/bell.png",
        "128": "icons\/bell.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/notificationMuter.js",
            "src\/popupMuter.js",
            "src\/alertMuter.js",
            "src\/clickListener.js",
            "src\/iconListener.js",
            "src\/reinjectListener.js",
            "src\/background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icons\/bell.png",
        "default_title": "mute\/unmute notifications"
    },
    "permissions": [
        "https:\/\/calendar.google.com\/*",
        "http:\/\/calendar.google.com\/*",
        "contentSettings",
        "storage"
    ],
    "web_accessible_resources": [
        "icons\/no-bell.png"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*",
                "http:\/\/calendar.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}