Examine source code of Clear Local Storage

Inspect and view changes in Clear Local Storage source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
  ]
}