Sveltime

Developer Tool to analyze Svelte apps and list component trees, state, and render timing

Was ist Sveltime?

Sveltime ist eine Chrome-Erweiterung, die von sveltime entwickelt wurde, und ihr Hauptmerkmal ist "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Erweiterungsscreenshots

screenshot

Sveltime-Erweiterungs-CRX-Datei herunterladen

Laden Sie Sveltime-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Sveltime is a Chrome DevTools extension for developers actively building their website using the Svelte framework.  Sveltime will show the component tree as it is currently being rendered.  Each component will also have the option to see what state is currently associated with it.  The render time will also be displayed for each component.                    

Grundlegende Informationen zur Erweiterung

Name Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
Offizielle URL https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Beschreibung Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Dateigröße 186 KB
Installationsanzahl 49
Aktuelle Version 1.0
Letztes Update 2022-06-02
Veröffentlichungsdatum 2022-06-02
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler sveltime
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Sveltime",
    "version": "1.0",
    "description": "Developer Tool to analyze Svelte apps and list component trees, state, and render timing",
    "author": "Team Sveltime",
    "icons": {
        "16": "\/src\/assets\/clock16.png",
        "32": "\/src\/assets\/clock32.png",
        "48": "\/src\/assets\/clock48.png",
        "128": "\/src\/assets\/clock128.png"
    },
    "devtools_page": "extension\/html\/devtools.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "\/extension\/js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}