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
Eメール [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"
    }
}