Svelte Devtools

Browser devtools extension for debugging Svelte applications.

Svelte Devtools là gì?

Svelte Devtools là một tiện ích mở rộng Chrome được phát triển bởi RedHatter271, và tính năng chính của nó là "Browser devtools extension for debugging Svelte applications.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Svelte Devtools

Tải xuống các tệp mở rộng Svelte Devtools dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Svelte Devtools Svelte Devtools
ID ckolcbmkjpjmangdbmnkpjigpkddpogn
URL Chính Thức https://chrome.google.com/webstore/detail/svelte-devtools/ckolcbmkjpjmangdbmnkpjigpkddpogn
Mô tả Browser devtools extension for debugging Svelte applications.
Kích Thước Tệp 55.92 KB
Số Lần Cài Đặt 19,811
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2021-01-02
Ngày Phát Hành 2020-03-28
Đánh Giá 3.26/5 Tổng số 53 Đánh Giá
Nhà Phát Triển RedHatter271
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/RedHatter/svelte-devtools
URL Trang Trợ Giúp https://github.com/RedHatter/svelte-devtools/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}