Classic Cache Killer

Classic Cache Killer

Back in Web Store! Automatically clear your browser cache before loading a page. Can be enabled/disabled with a single mouse click.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.5",
  "name": "Classic Cache Killer",
  "description": "Back in Web Store! Automatically clear your browser cache before loading a page. Can be enabled/disabled with a single mouse click.",
  "manifest_version": 3,
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon48.png",
    "128": "icon/icon128.png"
  },
  "action": {
    "default_title": "Cache Killer disabled",
    "default_icon": {
      "16": "icon-off.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "open_in_tab": true,
    "page": "options.html"
  },
  "permissions": [
    "storage",
    "browsingData",
    "webRequest",
    "declarativeNetRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}