Notification Muter

This extension will mute notifications

Cos'è Notification Muter?

Notification Muter è un'estensione di Chrome sviluppata da mfreedman, e la sua funzione principale è "This extension will mute notifications".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Notification Muter

Scarica i file di estensione Notification Muter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
URL Ufficiale https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Descrizione This extension will mute notifications
Dimensione del File 27.62 KB
Conteggio Installazioni 176
Versione Corrente 0.0.3.18
Ultimo Aggiornamento 2017-06-07
Data di Pubblicazione 2017-06-07
Valutazione 3.50/5 Totale 2 Valutazioni
Sviluppatore mfreedman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mikfreedman/notification-muter
URL della Pagina di Aiuto https://github.com/mikfreedman/notification-muter/blob/master/README.md
Lingue Supportate 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"
            ]
        }
    ]
}