Colada DevTools
Time-travel debugging for Pinia, Vue's official state management library.
Colada DevToolsとは何ですか?
Colada DevToolsはteamcoladaによって開発されたChromeの拡張機能で、その主な機能は「Time-travel debugging for Pinia, Vue's official state management library.」です。
拡張機能のスクリーンショット
Colada DevTools拡張機能のCRXファイルをダウンロード
Colada DevTools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Colada is a developer tool that enables time-travel debugging for Vue applications that use Pinia stores for state management. 拡張機能の基本情報
| 名前 | |
| ID | icdbaobbeemmhlmjolbkedcneadkfpdl |
| 公式URL | https://chromewebstore.google.com/detail/colada-devtools/icdbaobbeemmhlmjolbkedcneadkfpdl |
| 説明 | Time-travel debugging for Pinia, Vue's official state management library. |
| ファイルサイズ | 118 KB |
| インストール数 | 2,167 |
| 現在のバージョン | 0.1.2 |
| 最終更新日 | 2022-09-24 |
| 公開日 | 2022-09-24 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | teamcolada |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://colada.dev/ |
| ヘルプページのURL | https://github.com/oslabs-beta/colada/issues |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Colada DevTools",
"description": "Time-travel debugging for Pinia, Vue's official state management library.",
"version": "0.1.2",
"manifest_version": 3,
"icons": {
"16": ".\/assets\/icon-16.png",
"48": ".\/assets\/icon-48.png",
"128": ".\/assets\/icon-128.png"
},
"permissions": [
"storage"
],
"action": {
"default_popup": "popup.html"
},
"devtools_page": "devtools-background.html",
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
".\/content-script.js"
]
}
]
} | |