Cleanup Data

A quick and easy way to clear all types of browsing data. Now with individual cookie management and removal.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Cleanup Data",
  "description": "A quick and easy way to clear all types of browsing data. Now with individual cookie management and removal.",
  "version": "1.4.5",
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "browsingData",
    "storage",
    "cookies",
    "http://*/",
    "https://*/"
  ],
  "browser_action": {
    "default_icon": {
      "32": "images/broom_icon32x32.png",
      "64": "images/broom_icon64x64.png",
      "128": "images/broom_icon128x128.png",
      "240": "images/broom_icon240x240.png"
    },
    "default_popup": "success.html",
    "default_title": "Cleanup Data"
  },
  "icons": {
    "32": "images/broom_icon32x32.png",
    "64": "images/broom_icon64x64.png",
    "128": "images/broom_icon128x128.png",
    "240": "images/broom_icon240x240.png"
  }
}