Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Svelte Devtools란 무엇입니까?

Svelte Devtools은(는) RedHatter271에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser devtools extension for debugging Svelte applications."입니다.

확장 프로그램 스크린샷

screenshot

Svelte Devtools 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Svelte Devtools is a Chrome extension for the Svelte javascript framework. It allows you to inspect the Svelte state and component hierarchies in the Chrome Developer Tools.

After installing you will see new tab in Chrome DevTools. This tab displays a tree of Svelte components, HTMLx blocks, and DOM elements that were rendered on the page. By selecting one of the nodes in the tree, you can inspect and edit its current state in the panel to the right.                    

확장 프로그램 기본 정보

이름 Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
공식 URL https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
설명 Browser devtools extension for debugging Svelte applications.
파일 크기 55.92 KB
설치 횟수 19,811
현재 버전 1.3.0
최근 업데이트 2021-01-02
출시 날짜 2020-03-28
평점 3.26/5 총 53 개의 평점
개발자 RedHatter271
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/RedHatter/svelte-devtools
도움말 페이지 URL https://github.com/RedHatter/svelte-devtools/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Svelte Devtools",
    "version": "1.3.0",
    "description": "Browser devtools extension for debugging Svelte applications.",
    "icons": {
        "16": "icon-16.png",
        "24": "icon-24.png",
        "48": "icon-48.png",
        "96": "icon-96.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "devtools_page": "devtools\/index.html",
    "web_accessible_resources": [
        "privilegedContent.js"
    ]
}