Svelte Reactive Debugger

Monitor svelte reactive statements

什麼是Svelte Reactive Debugger?

Svelte Reactive Debugger是由unloco開發的Chrome擴展程式,該擴展的主要功能是“Monitor svelte reactive statements”。

擴展截圖

screenshot
screenshot

下載Svelte Reactive Debugger擴展crx文件

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

擴展使用說明

                        SvelteJs makes use of reactive statement that are re-executed on a state change. These statements can prove hard to debug or monitor. That's where this extension comes in. It allows to monitor the reactive statements easily by showing the statements as they are executed and also by showing the state snapshots before and after the statement has been invoked.                    

擴展基本資訊

名稱 Svelte Reactive Debugger Svelte Reactive Debugger
ID mieppkcamgfhpjedhnfdlbndijhohmjf
官方網址 https://chromewebstore.google.com/detail/svelte-reactive-debugger/mieppkcamgfhpjedhnfdlbndijhohmjf
簡介 Monitor svelte reactive statements
檔案大小 216 KB
安裝次數 1,675
目前版本 0.8.3
更新時間 2022-12-14
上架時間 2021-01-20
開發者 unloco
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Svelte Reactive Debugger",
    "version": "0.8.3",
    "description": "Monitor svelte reactive statements",
    "icons": {
        "16": "icons\/icon-16.png",
        "24": "icons\/icon-24.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "96": "icons\/icon-96.png",
        "128": "icons\/icon-128.png"
    },
    "devtools_page": "devtools\/devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "devtools\/content.js",
                "devtools\/helper.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "devtools\/background.js"
    },
    "permissions": [
        "tabs"
    ],
    "optional_host_permissions": [
        ""
    ],
    "manifest_version": 3
}