Svelte DevTools
Browser DevTools extension for debugging Svelte applications.
Svelte DevTools란 무엇입니까?
Svelte DevTools은(는) ignatiusmb에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser DevTools extension for debugging Svelte applications."입니다.
확장 프로그램 스크린샷
Svelte DevTools 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Check out the changelog at https://github.com/sveltejs/svelte-devtools/releases --- Svelte DevTools is a Chrome DevTools extension for the open-source Svelte JavaScript framework. It allows you to gain deep insights and inspect the Svelte component hierarchies in the Chrome Developer Tools panel itself. After installing, you will get a new tab in your Chrome DevTools titled "Svelte". The DevTools panel will only work on sites with `dev` mode enabled, which should work out-of-the-box when you're running your Svelte app locally. Key Features: - Zero-configuration: Run your application in development mode and have everything working - Real-time Component Tree: Svelte component hierarchy visualization in real-time, deeper understanding of your application structure and identify relationships between components easily - Interactive State Inspection: Modify and experiment with component states effortlessly in one place, and easily see events and other state - Dark Mode Support: Enjoy the sleek and user-friendly interface in both light and dark modes - Open Source and Community-Driven: This extension is open source and actively maintained by the Svelte community This extension requires permissions to access the tab's content, data will be processed locally in your browser and cleared after each session.
확장 프로그램 기본 정보
이름 | Svelte DevTools |
ID | kfidecgcdjjfpeckbblhmfkhmlgecoff |
공식 URL | https://chromewebstore.google.com/detail/svelte-devtools/kfidecgcdjjfpeckbblhmfkhmlgecoff |
설명 | Browser DevTools extension for debugging Svelte applications. |
파일 크기 | 61.7 KB |
설치 횟수 | 5,000 |
현재 버전 | 2.1.0 |
최근 업데이트 | 2024-01-24 |
출시 날짜 | 2023-10-24 |
평점 | 4.38/5 총 13 개의 평점 |
개발자 | ignatiusmb |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/sveltejs/svelte-devtools |
도움말 페이지 URL | https://github.com/sveltejs/svelte-devtools/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Svelte DevTools", "version": "2.1.0", "description": "Browser DevTools extension for debugging Svelte applications.", "icons": { "16": "icons\/default-16.png", "24": "icons\/default-24.png", "48": "icons\/default-48.png", "96": "icons\/default-96.png", "128": "icons\/default-128.png" }, "action": { "default_icon": { "16": "icons\/disabled-16.png", "24": "icons\/disabled-24.png", "48": "icons\/disabled-48.png", "96": "icons\/disabled-96.png", "128": "icons\/disabled-128.png" } }, "background": { "service_worker": "background.js" }, "devtools_page": "register.html", "host_permissions": [ "*:\/\/*\/*" ], "permissions": [ "activeTab", "scripting" ], "web_accessible_resources": [ { "matches": [ "*:\/\/*\/*" ], "resources": [ "courier.js" ] }, { "matches": [ "*:\/\/*\/*" ], "resources": [ "sensor.js" ], "world": "MAIN" } ] } |