Konva Dev Tool

devtool for konva

What is Konva Dev Tool?

Konva Dev Tool is a Chrome extension developed by nearygy, and its main feature is "devtool for konva".

Extension Screenshots

screenshot
screenshot
screenshot

Download Konva Dev Tool Extension CRX File

Download Konva Dev Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Konva Dev Tool Konva Dev Tool
ID liddfplammjmpepmjkokfmgemohhhnnm
Official URL https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm
Description devtool for konva
File Size 487 KB
Installation Count 308
Current Version 0.0.4
Last Updated 2023-07-04
Publish Date 2023-02-10
Developer nearygy
Email [email protected]
Payment Type free
Extension Website https://github.com/yinguangyao/konva-devtool
Help Page URL https://github.com/yinguangyao/konva-devtool
Supported Languages 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": []
}