AntiCookieBox

AntiCookieBox

This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AntiCookieBox",
  "description": "This extension will delete an 'accept cookie' section of a page, by simply removing it from your screen",
  "version": "2.4",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "icons": {
    "16": "images/logo16.png",
    "18": "images/logo18.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "images/logo16.png",
      "18": "images/logo18.png",
      "48": "images/logo48.png",
      "128": "images/logo128.png"
    },
    "default_title": "AntiCookieBox",
    "default_popup": "popup/popup.html"
  },
  "options_page": "options.html"
}