Startup Cookie Destroyer

Startup Cookie Destroyer

Remove unwanted cookies and site data on start-up, and manually from the toolbar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Startup Cookie Destroyer",
  "version": "1.2.0",
  "manifest_version": 2,
  "description": "Remove unwanted cookies and site data on start-up, and manually from the toolbar.",
  "background": {
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "icons": {
    "128": "/img/icon128.png"
  },
  "browser_action": {
    "name": "Clear cookies and site data."
  },
  "options_ui": {
    "page": "/html/options.html",
    "chrome_style": true,
    "open_in_tab": false
  },
  "permissions": [
    "browsingData",
    "storage",
    "cookies",
    "http://*/*",
    "https://*/*"
  ]
}