Notification Muter

This extension will mute notifications

Was ist Notification Muter?

Notification Muter ist eine Chrome-Erweiterung, die von mfreedman entwickelt wurde, und ihr Hauptmerkmal ist "This extension will mute notifications".

Erweiterungsscreenshots

screenshot

Notification Muter-Erweiterungs-CRX-Datei herunterladen

Laden Sie Notification Muter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
Offizielle URL https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Beschreibung This extension will mute notifications
Dateigröße 27.62 KB
Installationsanzahl 176
Aktuelle Version 0.0.3.18
Letztes Update 2017-06-07
Veröffentlichungsdatum 2017-06-07
Bewertung 3.50/5 Insgesamt 2 Bewertungen
Entwickler mfreedman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/mikfreedman/notification-muter
Hilfeseite URL https://github.com/mikfreedman/notification-muter/blob/master/README.md
Unterstützte Sprachen 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"
            ]
        }
    ]
}