Storage Editor

Storage Editor

Editor for Local Storage and Session Storage.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Storage Editor",
  "version": "1.0.2",
  "action": {
    "default_popup": "src/panel/index.html#/popup"
  },
  "description": "Editor for Local Storage and Session Storage.",
  "icons": {
    "16": "public/logo.png",
    "48": "public/logo.png",
    "128": "public/logo.png"
  },
  "author": "Hancel.Lin",
  "homepage_url": "https://github.com/imlinhanchao/crx_storage_editor",
  "background": {
    "service_worker": "service-worker-loader.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "assets/content-script-loader.index.ts.c957594d.5c55b11c.js"
      ],
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "devtools_page": "src/devtools/index.html",
  "permissions": [
    "activeTab"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "src/content-script/index.ts",
        "public/logo_128.png"
      ],
      "use_dynamic_url": false
    },
    {
      "matches": [
        "*://*/*"
      ],
      "resources": [
        "assets/index.ts.c957594d.js"
      ],
      "use_dynamic_url": true
    }
  ]
}