SVOLTE

SVOLTE

Browser devtools extension for debugging Svelte applications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SVOLTE",
  "version": "1.3.0",
  "description": "Browser devtools extension for debugging Svelte applications.",
  "content_scripts": [
    {
      "world": "MAIN",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "isolated.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "type": "module",
    "service_worker": "background.js",
    "run_at": "document_start"
  },
  "devtools_page": "devtools/index.html",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  }
}