KonvaJS Devtools

Devtools for your Konva App

Cos'è KonvaJS Devtools?

KonvaJS Devtools è un'estensione di Chrome sviluppata da maitrungduc1410, e la sua funzione principale è "Devtools for your Konva App".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione KonvaJS Devtools

Scarica i file di estensione KonvaJS Devtools in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome KonvaJS Devtools KonvaJS Devtools
ID aleknfecbpmpnkfoaohgpffcjenmjjfi
URL Ufficiale https://chromewebstore.google.com/detail/konvajs-devtools/aleknfecbpmpnkfoaohgpffcjenmjjfi
Descrizione Devtools for your Konva App
Dimensione del File 327 KB
Conteggio Installazioni 282
Versione Corrente 0.0.21
Ultimo Aggiornamento 2024-02-19
Data di Pubblicazione 2023-05-30
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore maitrungduc1410
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/maitrungduc1410/konva-inspector
Lingue Supportate 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}