Block Notifications

Blocks annoying notification prompt appearing on certain websites.

What is Block Notifications?

Block Notifications is a Chrome extension developed by BrowserNative, and its main feature is "Blocks annoying notification prompt appearing on certain websites.".

Extension Screenshots

screenshot
screenshot

Download Block Notifications Extension CRX File

Download Block 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

                        Uses chrome.contentSettings API to block sites to show desktop notifications.                    

Extension Basic Information

Name Block Notifications Block Notifications
ID hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Official URL https://chromewebstore.google.com/detail/block-notifications/hmbdemoadbcdfmdjiokhcnoaoepgbhbn
Description Blocks annoying notification prompt appearing on certain websites.
File Size 27.94 KB
Installation Count 4,468
Current Version 0.1
Last Updated 2021-01-20
Publish Date 2016-12-15
Rating 3.40/5 Total 20 Ratings
Developer BrowserNative
Email [email protected]
Payment Type free
Extension Website https://browsernative.com/block-notifications-chrome/
Help Page URL https://browsernative.com/block-notifications-chrome/
Privacy Policy Page URL https://browsernative.com/extensions-privacy-policy
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Block Notifications",
    "version": "0.1",
    "description": "Blocks annoying notification prompt appearing on certain websites.",
    "permissions": [
        "contentSettings",
        ""
    ],
    "manifest_version": 2,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_title": "Block Notifications"
    },
    "icons": {
        "128": "icon.png"
    }
}