Svelte DevTools

Browser DevTools extension for debugging Svelte applications.

Svelte DevToolsคืออะไร?

Svelte DevTools เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ignatiusmb และคุณลักษณะหลักของมันคือ "Browser DevTools extension for debugging Svelte applications."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Svelte DevTools

ดาวน์โหลดไฟล์ส่วนขยาย Svelte DevTools ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Check out the changelog at https://github.com/sveltejs/svelte-devtools/releases

---

Svelte DevTools is a Chrome DevTools extension for the open-source Svelte JavaScript framework. It allows you to gain deep insights and inspect the Svelte component hierarchies in the Chrome Developer Tools panel itself. After installing, you will get a new tab in your Chrome DevTools titled "Svelte". The DevTools panel will only work on sites with `dev` mode enabled, which should work out-of-the-box when you're running your Svelte app locally.

Key Features:

- Zero-configuration: Run your application in development mode and have everything working
- Real-time Component Tree: Svelte component hierarchy visualization in real-time, deeper understanding of your application structure and identify relationships between components easily
- Interactive State Inspection: Modify and experiment with component states effortlessly in one place, and easily see events and other state
- Dark Mode Support: Enjoy the sleek and user-friendly interface in both light and dark modes
- Open Source and Community-Driven: This extension is open source and actively maintained by the Svelte community

This extension requires permissions to access the tab's content, data will be processed locally in your browser and cleared after each session.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Svelte DevTools Svelte DevTools
ID kfidecgcdjjfpeckbblhmfkhmlgecoff
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/svelte-devtools/kfidecgcdjjfpeckbblhmfkhmlgecoff
คำอธิบาย Browser DevTools extension for debugging Svelte applications.
ขนาดไฟล์ 61.7 KB
จำนวนการติดตั้ง 5,000
เวอร์ชันปัจจุบัน 2.1.0
อัปเดตครั้งล่าสุด 2024-01-24
วันที่เผยแพร่ 2023-10-24
คะแนน 4.38/5 รวมทั้งหมด 13 คะแนน
ผู้พัฒนา ignatiusmb
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sveltejs/svelte-devtools
URL หน้าช่วยเหลือ https://github.com/sveltejs/svelte-devtools/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Svelte DevTools",
    "version": "2.1.0",
    "description": "Browser DevTools extension for debugging Svelte applications.",
    "icons": {
        "16": "icons\/default-16.png",
        "24": "icons\/default-24.png",
        "48": "icons\/default-48.png",
        "96": "icons\/default-96.png",
        "128": "icons\/default-128.png"
    },
    "action": {
        "default_icon": {
            "16": "icons\/disabled-16.png",
            "24": "icons\/disabled-24.png",
            "48": "icons\/disabled-48.png",
            "96": "icons\/disabled-96.png",
            "128": "icons\/disabled-128.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "devtools_page": "register.html",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "courier.js"
            ]
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "sensor.js"
            ],
            "world": "MAIN"
        }
    ]
}