Cookie Free

Cookie Free

Keeping you free from Cookies as you surf the web.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Cookie Free",
  "version": "0.0.1",
  "description": "Keeping you free from Cookies as you surf the web.",
  "icons": {
    "16": "icon/cookie.png",
    "32": "icon/cookie.png",
    "128": "icon/cookie.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "cookies",
    "http://*/*",
    "https://*/*"
  ],
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/auto.js"
      ]
    }
  ]
}