SVOLTE

Browser devtools extension for debugging Svelte applications.

SVOLTEคืออะไร?

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

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

screenshot
screenshot
screenshot

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

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

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

                        Developer tools for Svelte applications and webpages. Features include a component hierarchy tree visualizer, state snapshots, and time-travel debugging.                    

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

ชื่อ SVOLTE SVOLTE
ID nlocdmlaoaknkffkhpmgahkdkcajcohk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/svolte/nlocdmlaoaknkffkhpmgahkdkcajcohk
คำอธิบาย Browser devtools extension for debugging Svelte applications.
ขนาดไฟล์ 321 KB
จำนวนการติดตั้ง 66
เวอร์ชันปัจจุบัน 1.3.0
อัปเดตครั้งล่าสุด 2023-06-06
วันที่เผยแพร่ 2023-06-05
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Svolte
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "SVOLTE",
    "version": "1.3.0",
    "description": "Browser devtools extension for debugging Svelte applications.",
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "isolated.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "type": "module",
        "service_worker": "background.js",
        "run_at": "document_start"
    },
    "devtools_page": "devtools\/index.html",
    "icons": {
        "16": "images\/16.png",
        "32": "images\/32.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    }
}