SVOLTE
Browser devtools extension for debugging Svelte applications.
SVOLTEとは何ですか?
SVOLTEはSvolteによって開発されたChromeの拡張機能で、その主な機能は「Browser devtools extension for debugging Svelte applications.」です。
拡張機能のスクリーンショット
SVOLTE拡張機能のCRXファイルをダウンロード
SVOLTE拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Developer tools for Svelte applications and webpages. Features include a component hierarchy tree visualizer, state snapshots, and time-travel debugging.
拡張機能の基本情報
名前 | SVOLTE |
ID | nlocdmlaoaknkffkhpmgahkdkcajcohk |
公式URL | https://chromewebstore.google.com/detail/svolte/nlocdmlaoaknkffkhpmgahkdkcajcohk |
説明 | Browser devtools extension for debugging Svelte applications. |
ファイルサイズ | 321 KB |
インストール数 | 66 |
現在のバージョン | 1.3.0 |
最終更新日 | 2023-06-06 |
公開日 | 2023-06-05 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | Svolte |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SVOLTE", "version": "1.3.0", "description": "Browser devtools extension for debugging Svelte applications.", "content_scripts": [ { "world": "MAIN", "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" }, { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "isolated.js" ], "run_at": "document_start" } ], "background": { "type": "module", "service_worker": "background.js", "run_at": "document_start" }, "devtools_page": "devtools\/index.html", "icons": { "16": "images\/16.png", "32": "images\/32.png", "48": "images\/48.png", "128": "images\/128.png" } } |