Notification Muter

This extension will mute notifications

What is Notification Muter?

Notification Muter is a Chrome extension developed by mfreedman, and its main feature is "This extension will mute notifications".

Extension Screenshots

screenshot

Download Notification Muter Extension CRX File

Download Notification Muter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Notification Muter Notification Muter
ID nadnegkhgmdkedmcmobengbmacbngpma
Official URL https://chromewebstore.google.com/detail/notification-muter/nadnegkhgmdkedmcmobengbmacbngpma
Description This extension will mute notifications
File Size 27.62 KB
Installation Count 176
Current Version 0.0.3.18
Last Updated 2017-06-07
Publish Date 2017-06-07
Rating 3.50/5 Total 2 Ratings
Developer mfreedman
Email [email protected]
Payment Type free
Extension Website https://github.com/mikfreedman/notification-muter
Help Page URL https://github.com/mikfreedman/notification-muter/blob/master/README.md
Supported Languages 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"
            ]
        }
    ]
}