SVOLTE

Browser devtools extension for debugging Svelte applications.

What is SVOLTE?

SVOLTE is a Chrome extension developed by Svolte, and its main feature is "Browser devtools extension for debugging Svelte applications.".

Extension Screenshots

screenshot
screenshot
screenshot

Download SVOLTE Extension CRX File

Download SVOLTE extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Developer tools for Svelte applications and webpages. Features include a component hierarchy tree visualizer, state snapshots, and time-travel debugging.                    

Extension Basic Information

Name SVOLTE SVOLTE
ID nlocdmlaoaknkffkhpmgahkdkcajcohk
Official URL https://chromewebstore.google.com/detail/svolte/nlocdmlaoaknkffkhpmgahkdkcajcohk
Description Browser devtools extension for debugging Svelte applications.
File Size 321 KB
Installation Count 66
Current Version 1.3.0
Last Updated 2023-06-06
Publish Date 2023-06-05
Rating 5.00/5 Total 5 Ratings
Developer Svolte
Email [email protected]
Payment Type free
Supported Languages en-US
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"
    }
}