Notification Muter

This extension will mute notifications

¿Qué es Notification Muter?

Notification Muter es una extensión de Chrome desarrollada por mfreedman, y su función principal es "This extension will mute notifications".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Notification Muter

Descarga archivos de extensión Notification Muter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
URL Oficial https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Descripción This extension will mute notifications
Tamaño del Archivo 27.62 KB
Cantidad de Instalaciones 176
Versión Actual 0.0.3.18
Última Actualización 2017-06-07
Fecha de Publicación 2017-06-07
Calificación 3.50/5 Total de 2 Calificaciones
Desarrollador mfreedman
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/mikfreedman/notification-muter
URL de la Página de Ayuda https://github.com/mikfreedman/notification-muter/blob/master/README.md
Idiomas Soportados 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"
            ]
        }
    ]
}