Svelte Slicer
Browser devtools extension for time traveling and visualizing Svelte applications.
Svelte Slicer क्या है?
Svelte Slicer https://svelteslicer.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Browser devtools extension for time traveling and visualizing Svelte applications."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Svelte Slicer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |