OPFS Explorer

OPFS Explorer

OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "OPFS Explorer",
  "description": "OPFS Explorer is a Chrome DevTools extension that allows you to explore the Origin Private File System (OPFS) of a web application.",
  "manifest_version": 3,
  "version": "1.6.2",
  "devtools_page": "devtools.html",
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://localhost/*",
        "http://0.0.0.0/*",
        "http://127.0.0.1/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentscript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "serviceworker.js"
  },
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  }
}