Clear Local Storage

Clear Local Storage

This extension lets you clear local storage and then reloads the page

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 Local Storage",
  "version": "0.0.2.1",
  "short_name": "Clear LocalStorage",
  "description": "This extension lets you clear local storage and then reloads the page",
  "author": "Rimraf",
  "icons": {
    "128": "icon_128.png",
    "286": "icon_286.png"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+L",
        "windows": "Alt+Shift+L",
        "mac": "Command+Shift+L",
        "chromeos": "Alt+Shift+L",
        "linux": "Alt+Shift+L"
      },
      "description": "Open extension",
      "global": false
    }
  },
  "action": {
    "default_icon": "icon_286.png",
    "default_popup": "clear-ls.html",
    "default_title": "Clear Local Storage"
  },
  "permissions": [
    "scripting",
    "activeTab"
  ]
}