Clear Cache Shortcut

Clear Cache Shortcut

Quickly clear all your browser cache with a single click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Clear Cache Shortcut",
  "version": "1.32",
  "icons": {
    "16": "assets/icon16.png",
    "48": "assets/icon48.png",
    "128": "assets/icon128.png"
  },
  "description": "Quickly clear all your browser cache with a single click.",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "browser_action": {
    "default_icon": "assets/icon_done.png",
    "default_title": "Clear All Cache",
    "default_popup": "info.html"
  },
  "omnibox": {
    "keyword": "cache"
  },
  "background": {
    "scripts": [
      "assets/jquery-1.9.0.min.js",
      "assets/functions.js",
      "assets/background.js"
    ]
  },
  "permissions": [
    "browsingData"
  ]
}