I don't care about cookies

I don't care about cookies

Remove cookie warnings from almost all websites! The EU regulations require that any website using tracking cookies must get…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "short_name": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "3.5.0",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "author": "Daniel Kladnik @ kiboke studio",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*",
    "notifications",
    "webRequest",
    "webRequestBlocking",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "data/rules.js",
      "data/context-menu.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"
    }
  }
}