Sveltime

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

Qu'est-ce que Sveltime ?

Sveltime est une extension Chrome développée par sveltime, et sa fonction principale est "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Sveltime

Téléchargez les fichiers d'extension Sveltime au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
URL Officiel https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Description Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Taille du Fichier 186 KB
Nombre d'Installations 49
Version Actuelle 1.0
Dernière Mise à Jour 2022-06-02
Date de Publication 2022-06-02
Évaluation 5.00/5 Total 3 Évaluations
Développeur sveltime
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}