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文件

下載Svelte Devtools擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    ]
}