Notification Muter

This extension will mute notifications

Qu'est-ce que Notification Muter ?

Notification Muter est une extension Chrome développée par mfreedman, et sa fonction principale est "This extension will mute notifications".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Notification Muter

Téléchargez les fichiers d'extension Notification Muter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
URL Officiel https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Description This extension will mute notifications
Taille du Fichier 27.62 KB
Nombre d'Installations 176
Version Actuelle 0.0.3.18
Dernière Mise à Jour 2017-06-07
Date de Publication 2017-06-07
Évaluation 3.50/5 Total 2 Évaluations
Développeur mfreedman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/mikfreedman/notification-muter
URL de la Page d'Aide https://github.com/mikfreedman/notification-muter/blob/master/README.md
Langues Prises en Charge 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"
            ]
        }
    ]
}