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
官方URL 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
}