Auto Reject Cookies

Auto Reject Cookies

This Extensions tries to automaticly reject all non essential cookies and hide the banner.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Reject Cookies",
  "version": "0.1",
  "description": "This Extensions tries to automaticly reject all non essential cookies and hide the banner.",
  "web_accessible_resources": [
    "block.js"
  ],
  "manifest_version": 2,
  "page_action": {
    "default_icon": {
      "16": "deliver.png",
      "32": "deliver.png",
      "48": "deliver.png",
      "128": "deliver.png"
    }
  },
  "content_scripts": [
    {
      "js": [
        "contentscript.js"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}