Cookie Keeper

Cookie Keeper

Set domain rules for cookies you want to keep, all other cookies are deleted.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "short_name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.2.4",
  "manifest_version": 2,
  "default_locale": "en",
  "minimum_chrome_version": "40",
  "author": "Cirplex",
  "homepage_url": "http://cirplex.com",
  "icons": {
    "16": "resources/icon/icon16.png",
    "24": "resources/icon/icon24.png",
    "32": "resources/icon/icon32.png",
    "48": "resources/icon/icon48.png",
    "128": "resources/icon/icon128.png"
  },
  "options_ui": {
    "chrome_style": false,
    "page": "options.html"
  },
  "background": {
    "scripts": [
      "scripts/lib/almond.js",
      "scripts/common.js",
      "scripts/page_background.js"
    ],
    "persistent": false
  },
  "optional_permissions": [
    "notifications"
  ],
  "permissions": [
    "cookies",
    "storage",
    "browsingData",
    "http://*/*",
    "https://*/*"
  ]
}