Mute Notifications

Disable all desktop notifications with one click.

What is Mute Notifications?

Mute Notifications is a Chrome extension developed by Ondřej Cífka, and its main feature is "Disable all desktop notifications with one click.".

Extension Screenshots

screenshot

Download Mute Notifications Extension CRX File

Download Mute Notifications 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 extension adds a button to Chrome that turns off desktop notifications for all web pages. When the button is clicked again, the original notification settings are restored.                    

Extension Basic Information

Name Mute Notifications Mute Notifications
ID bmjdeaihnngnnnaldgakphcaanioohgn
Official URL https://chromewebstore.google.com/detail/mute-notifications/bmjdeaihnngnnnaldgakphcaanioohgn
Description Disable all desktop notifications with one click.
File Size 17.44 KB
Installation Count 5,077
Current Version 0.3
Last Updated 2019-12-20
Publish Date 2019-12-20
Rating 4.47/5 Total 19 Ratings
Developer Ondřej Cífka
Payment Type free
Extension Website https://github.com/cifkao/chrome-mute-notifications
Help Page URL https://github.com/cifkao/chrome-mute-notifications
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Mute Notifications",
    "description": "Disable all desktop notifications with one click.",
    "version": "0.3",
    "icons": {
        "128": "logo-128.png",
        "48": "logo-48.png"
    },
    "permissions": [
        "contentSettings",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "19": "icon-on-19.png",
            "38": "icon-on-38.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}