KonvaJS Devtools

Devtools for your Konva App

KonvaJS Devtoolsとは何ですか?

KonvaJS Devtoolsはmaitrungduc1410によって開発されたChromeの拡張機能で、その主な機能は「Devtools for your Konva App」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

KonvaJS Devtools拡張機能のCRXファイルをダウンロード

KonvaJS Devtools拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Browser extension for debugging Konva app.

Features:
- Support inspect all Konva objects (Text, Image, Rect, Star,....)
- Edit object attributes in place, right in the extension
- Changing Filter is supported
- Select object by Cursor
- Dark theme supported
- Multiple stages supported                    

拡張機能の基本情報

名前 KonvaJS Devtools KonvaJS Devtools
ID aleknfecbpmpnkfoaohgpffcjenmjjfi
公式URL https://chromewebstore.google.com/detail/konvajs-devtools/aleknfecbpmpnkfoaohgpffcjenmjjfi
説明 Devtools for your Konva App
ファイルサイズ 327 KB
インストール数 282
現在のバージョン 0.0.21
最終更新日 2024-02-19
公開日 2023-05-30
評価 5.00/5 合計 1 レビュー
開発者 maitrungduc1410
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/maitrungduc1410/konva-inspector
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "KonvaJS Devtools",
    "version": "0.0.21",
    "description": "Devtools for your Konva App",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon32_black.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "css": []
        }
    ],
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "src\/pages\/detector\/index.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}