Cookie Cutter by Neeva

Cookie Cutter by Neeva

Cookie Cutter protects users from tracking and responds to cookie consent forms

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Cookie Cutter by Neeva ",
  "short_name": "Cookie Cutter by Neeva ",
  "description": "Cookie Cutter protects you from third-party trackers and responds to cookie requests and pop-ups so you don't have to.",
  "version": "2.0.6",
  "manifest_version": 2,
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "browser_action": {
    "default_title": "Cookie Cutter by Neeva",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/tracker-extension-icon.png",
    "32": "icons/[email protected]",
    "48": "icons/[email protected]",
    "128": "icons/tracker-extension-icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "content_security_policy": "script-src 'self' 'wasm-eval'; object-src 'self'",
  "permissions": [
    "storage",
    "activeTab",
    "webRequestBlocking",
    "webRequest",
    "*://*/*"
  ],
  "web_accessible_resources": [
    "page.js"
  ],
  "options_ui": {
    "page": "settings.html"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{dacbcb0d-a4c9-4f42-9da2-8cb352b714c4}"
    }
  }
}