Block Notifications

Block Notifications

Blocks annoying notification prompt appearing on certain websites.

Merlin
Additional files are visible only to premium users

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",
    "<all_urls>"
  ],
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Block Notifications"
  },
  "icons": {
    "128": "icon.png"
  }
}