Cookie Notice Blocker

Cookie Notice Blocker

Remove most of those annoying "We value your privacy" banners & cookie notices from websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cookie Notice Blocker",
  "author": "Ben Cheshire",
  "short_name": "CNB",
  "version": "1.7.0",
  "manifest_version": 2,
  "minimum_chrome_version": "80",
  "description": "Remove most of those annoying \"We value your privacy\" banners & cookie notices from websites.",
  "browser_action": {
    "default_icon": {
      "19": "img/icon19.png",
      "38": "img/icon38.png"
    }
  },
  "icons": {
    "16": "img/icon16.png",
    "19": "img/icon19.png",
    "38": "img/icon38.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png",
    "256": "img/icon256.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "<all_urls>"
  ],
  "background": {
    "persistent": true,
    "scripts": [
      "jsc/1.js"
    ]
  },
  "options_page": "bFramework/options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*/*.svg*"
      ],
      "js": [
        "jsc/2.js"
      ],
      "all_frames": true,
      "match_about_blank": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    "img/*"
  ],
  "version_name": "1.7.0"
}