Clear Cache for Current Tab

Clear Cache for Current Tab

Clears the browser cache for the current tab only.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Clear Cache for Current Tab",
  "version": "1.0.0",
  "description": "Clears the browser cache for the current tab only.",
  "author": "Nicolas Barraud",
  "permissions": [
    "browsingData",
    "activeTab"
  ],
  "commands": {
    "clear-cache": {
      "suggested_key": {
        "default": "Ctrl+R",
        "mac": "Command+R"
      },
      "description": "Clear cache for current tab"
    }
  },
  "action": {
    "default_title": "Clear cache for current tab",
    "default_icon": {
      "16": "icon16.png",
      "24": "icon24.png",
      "32": "icon32.png",
      "64": "icon64.png",
      "128": "icon128.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  }
}