CookiesBlock - cookie pop-ups

CookiesBlock - cookie pop-ups

CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CookiesBlock - cookie pop-ups",
  "version": "0.11.0",
  "author": "RepoGamesStudio",
  "description": "CookiesBlock - block cookie pop ups, notices, warning , notifications and newsletters",
  "manifest_version": 2,
  "permissions": [
    "activeTab",
    "contentSettings",
    "storage"
  ],
  "optional_permissions": [
    "privacy"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "browser_action": {
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_idle",
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "postfill.js"
      ],
      "run_at": "document_end",
      "all_frames": true,
      "match_about_blank": true
    }
  ]
}