Konva Dev Tool

devtool for konva

Wat is Konva Dev Tool?

Konva Dev Tool is een Chrome-extensie ontwikkeld door nearygy, en de belangrijkste functie is "devtool for konva".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Konva Dev Tool

Download Konva Dev Tool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Konva Dev Tool Konva Dev Tool
ID liddfplammjmpepmjkokfmgemohhhnnm
Officiële URL https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm
Beschrijving devtool for konva
Bestandsgrootte 487 KB
Aantal Installaties 308
Huidige Versie 0.0.4
Laatst Bijgewerkt 2023-07-04
Publicatiedatum 2023-02-10
Ontwikkelaar nearygy
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/yinguangyao/konva-devtool
Help Pagina-URL https://github.com/yinguangyao/konva-devtool
Ondersteunde Talen 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": []
}