Konva Dev Tool
devtool for konva
Konva Dev Toolとは何ですか?
Konva Dev Toolはnearygyによって開発されたChromeの拡張機能で、その主な機能は「devtool for konva」です。
拡張機能のスクリーンショット
Konva Dev Tool拡張機能のCRXファイルをダウンロード
Konva Dev Tool拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This is a developer tool for konvajs, similar to the chrome element panel, you can view the shape information of konva, and you can also highlight the shape on the page. 拡張機能の基本情報
| 名前 | |
| ID | liddfplammjmpepmjkokfmgemohhhnnm |
| 公式URL | https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm |
| 説明 | devtool for konva |
| ファイルサイズ | 487 KB |
| インストール数 | 308 |
| 現在のバージョン | 0.0.4 |
| 最終更新日 | 2023-07-04 |
| 公開日 | 2023-02-10 |
| 開発者 | nearygy |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/yinguangyao/konva-devtool |
| ヘルプページのURL | https://github.com/yinguangyao/konva-devtool |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Konva Dev Tool",
"description": "devtool for konva",
"version": "0.0.4",
"devtools_page": "devtools.html",
"minimum_chrome_version": "88",
"manifest_version": 3,
"host_permissions": [
"file:\/\/\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"css": [],
"js": [
"scripts\/content-script.js"
]
}
],
"icons": {
"16": "icons\/16.png",
"32": "icons\/32.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"web_accessible_resources": [
{
"resources": [
"main.html",
"panel.html",
"scripts\/backend.js"
],
"matches": [],
"extension_ids": []
}
],
"action": []
} | |