Stop Cookies Popup Alerts

Stop Cookies Popup Alerts

Because of EU guidelines and expanded consciousness of online security, each site should get the client's consent prior to…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Stop Cookies Popup Alerts",
  "short_name": "Stop cookies popup from almost all websites",
  "default_locale": "en",
  "version": "1.3.0",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "UpStal",
  "permissions": [
    "tabs",
    "storage",
    "<all_urls>",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "data/rules.js",
      "data/api.js",
      "data/context-menu.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/stoppopup.js"
      ]
    }
  ],
  "options_ui": {
    "page": "data/options.html",
    "chrome_style": true
  },
  "browser_action": {
    "default_popup": "data/menu/index.html",
    "default_icon": {
      "16": "icons/16.png",
      "32": "icons/32.png"
    }
  }
}