Sveltime

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

什么是Sveltime?

Sveltime是由sveltime开发的Chrome扩展程序,该扩展的主要功能是“Developer Tool to analyze Svelte apps and list component trees, state, and render timing”。

扩展截图

screenshot

下载Sveltime扩展crx文件

下载Sveltime扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Sveltime Sveltime
ID ohihipnjpfmcgkdfgaibblakcaebhjhk
官方URL https://chromewebstore.google.com/detail/sveltime/ohihipnjpfmcgkdfgaibblakcaebhjhk
简介 Developer Tool to analyze Svelte apps and list component trees, state, and render timing
文件大小 186 KB
安装次数 49
当前版本 1.0
更新时间 2022-06-02
上架时间 2022-06-02
评分 5.00/5 共3次评分
开发者 sveltime
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}