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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}