Consent Manager

Consent Manager

Removes most cookie banners and declines consent by omission

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Consent Manager",
  "description": "__MSG_manifestDescription__",
  "version": "3.2.0",
  "author": "PrivacyCloud",
  "short_name": "Consent Manager",
  "manifest_version": 2,
  "default_locale": "en",
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": true
  },
  "icons": {
    "16": "images/production/grey_16.png",
    "32": "images/production/grey_32.png",
    "64": "images/production/grey_64.png",
    "128": "images/production/grey_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "browser_action": {
    "default_title": "Consent Manager by PrivacyCloud",
    "default_popup": "pages/popup.html",
    "default_icon": {
      "16": "images/production/grey_16.png",
      "32": "images/production/grey_32.png",
      "64": "images/production/grey_64.png",
      "128": "images/production/grey_128.png"
    }
  },
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "webRequest",
    "webRequestBlocking"
  ]
}