Click and Clean

Click and Clean

Quickly delete your browsing data - open windows, browsing history, cookies, downloads history, form data, caches etc.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click and Clean",
  "short_name": "ClickClean",
  "description": "Quickly delete your browsing data - open windows, browsing history, cookies, downloads history, form data, caches etc.",
  "version": "0.1.0",
  "permissions": [
    "browsingData",
    "notifications"
  ],
  "manifest_version": 2,
  "background": {
    "persistent": false,
    "scripts": [
      "js/background.js"
    ]
  },
  "browser_action": {
    "default_icon": "files/icon-128.png",
    "default_title": "Click and Clean"
  },
  "icons": {
    "48": "files/icon-48.png",
    "128": "files/icon-128.png"
  },
  "homepage_url": "https://browsernative.com/click-and-clean-chrome-extension/",
  "options_ui": {
    "page": "options.html",
    "chrome_style": true,
    "open_in_tab": true
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  }
}