NoPush

NoPush

BLOCK ANNOYING NOTIFICATIONS in your Chrome browser ✅ Clean up your Chrome browser - fast and secure! ✅ Easy to use - just install…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "NoPush",
  "version": "3.0.1",
  "permissions": [
    "contentSettings",
    "storage",
    "scripting"
  ],
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-min.js",
        "libs/jquery.js"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src https://* data: blob: filesystem:;"
  }
}