Sveltime

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

Cos'è Sveltime?

Sveltime è un'estensione di Chrome sviluppata da sveltime, e la sua funzione principale è "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sveltime

Scarica i file di estensione Sveltime in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
URL Ufficiale https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Descrizione Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Dimensione del File 186 KB
Conteggio Installazioni 49
Versione Corrente 1.0
Ultimo Aggiornamento 2022-06-02
Data di Pubblicazione 2022-06-02
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore sveltime
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}