Svelte Slicer

Browser devtools extension for time traveling and visualizing Svelte applications.

Svelte Slicerคืออะไร?

Svelte Slicer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://svelteslicer.io และคุณลักษณะหลักของมันคือ "Browser devtools extension for time traveling and visualizing Svelte applications."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Svelte Slicer is an open-source Chrome Developer Tool that allows the user to view and traverse graphical and textual representations throughout its lifecycle, helping developers to more efficiently identify state-related bugs.

Key Features Include: 
-Visualization of component relationships
-Moment-by-moment tracking of state variables
-Snapshot diffing to identify specific state changes
-Dynamic time travel through past state snapshots

To read more on Svelte Slicer, head over to our article on Medium.com at: 

https://svelteslicer.medium.com/svelte-slicer-df5263a8e76f

Svelte Slicer is currently a work in progress and undergoing continual improvements. Please feel free to contribute at https://github.com/oslabs-beta/SvelteSlicer or contact one of our authors listed on GitHub.                    

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

ชื่อ Svelte Slicer Svelte Slicer
ID ohimeoplnpnoeapbnmgeddijpfobbijl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/svelte-slicer/ohimeoplnpnoeapbnmgeddijpfobbijl
คำอธิบาย Browser devtools extension for time traveling and visualizing Svelte applications.
ขนาดไฟล์ 213 KB
จำนวนการติดตั้ง 143
เวอร์ชันปัจจุบัน 0.0.0.1
อัปเดตครั้งล่าสุด 2022-02-18
วันที่เผยแพร่ 2022-02-17
ผู้พัฒนา https://svelteslicer.io
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Svelte Slicer",
    "version": "0.0.0.1",
    "minimum_chrome_version": "88",
    "description": "Browser devtools extension for time traveling and visualizing Svelte applications.",
    "devtools_page": "devtools\/index.html",
    "background": {
        "service_worker": "devtools\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*"
            ],
            "js": [
                "devtools\/listener.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_icon": {
            "16": "devtools\/public\/images\/icon16.png",
            "128": "devtools\/public\/images\/icon128.png"
        }
    },
    "icons": {
        "16": "devtools\/public\/images\/icon16.png",
        "128": "devtools\/public\/images\/icon128.png"
    }
}