Sveltime

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

Apa itu Sveltime?

Sveltime adalah ekstensi Chrome yang dikembangkan oleh sveltime, dan fitur utamanya adalah "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Sveltime

Unduh file ekstensi Sveltime dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
URL Resmi https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Deskripsi Developer Tool to analyze Svelte apps and list component trees, state, and render timing
Ukuran File 186 KB
Jumlah Instalasi 49
Versi Saat Ini 1.0
Terakhir Diperbarui 2022-06-02
Tanggal Publikasi 2022-06-02
Penilaian 5.00/5 Total 3 Penilaian
Pengembang sveltime
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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"
    }
}