Konva Dev Tool

devtool for konva

什麼是Konva Dev Tool?

Konva Dev Tool是由nearygy開發的Chrome擴展程式,該擴展的主要功能是“devtool for konva”。

擴展截圖

screenshot
screenshot
screenshot

下載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.                    

擴展基本資訊

名稱 Konva Dev Tool Konva Dev Tool
ID liddfplammjmpepmjkokfmgemohhhnnm
官方網址 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
電子郵箱 [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": []
}