Svelte Slicer
Browser devtools extension for time traveling and visualizing Svelte applications.
Svelte Slicer란 무엇입니까?
Svelte Slicer은(는) https://svelteslicer.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser devtools extension for time traveling and visualizing Svelte applications."입니다.
확장 프로그램 스크린샷
Svelte Slicer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" } } |