Cookie Dialog Gang

Cookie Dialog Gang

Did someone say cookie consent dialogs? 😋

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cookie Dialog Gang",
  "version": "1.0.5",
  "default_locale": "en",
  "description": "__MSG_appDesc__",
  "icons": {
    "16": "assets/icons/16.png",
    "48": "assets/icons/48.png",
    "128": "assets/icons/128.png"
  },
  "action": {
    "default_icon": "assets/icons/disabled.png",
    "default_title": "Cookie Dialog Gang"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "css": [
        "styles/dialog.css"
      ],
      "exclude_matches": [
        "*://*.gfycat.com/*",
        "*://*.mediathekviewweb.de/*",
        "*://*.rundschau-online.de/*",
        "*://*.youtube.com/embed/*"
      ],
      "js": [
        "scripts/content.js",
        "scripts/dialog.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "permissions": [
    "contextMenus",
    "storage",
    "tabs",
    "cookies"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "resources": [
        "https://fonts.googleapis.com/css?family=Inter",
        "assets/icons/vaindo.gif"
      ]
    }
  ]
}