Sveltime

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

What is Sveltime?

Sveltime is a Chrome extension developed by sveltime, and its main feature is "Developer Tool to analyze Svelte apps and list component trees, state, and render timing".

Extension Screenshots

screenshot

Download Sveltime Extension CRX File

Download Sveltime 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

                        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.                    

Extension Basic Information

Name Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
Official URL https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
Description Developer Tool to analyze Svelte apps and list component trees, state, and render timing
File Size 186 KB
Installation Count 49
Current Version 1.0
Last Updated 2022-06-02
Publish Date 2022-06-02
Rating 5.00/5 Total 3 Ratings
Developer sveltime
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": "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"
    }
}