I still don't care about cookies

I still don't care about cookies

Community version of the extension `I don't care about cookies` (no Avast)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "1.1.4",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "OhMyGuus and Community (originally Daniel Kladnik)",
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "webRequest",
    "declarativeNetRequestWithHostAccess",
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "data/background.js",
    "type": "module"
  },
  "options_ui": {
    "page": "data/options.html"
  },
  "action": {
    "default_popup": "data/menu/index.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    }
  },
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset_1",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  }
}