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