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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Svelte Slicer
قم بتنزيل ملفات الامتداد Svelte Slicer بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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" } } |