Konva Dev Tool
devtool for konva
Cos'è Konva Dev Tool?
Konva Dev Tool è un'estensione di Chrome sviluppata da nearygy, e la sua funzione principale è "devtool for konva".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Konva Dev Tool
Scarica i file di estensione Konva Dev Tool 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
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.
Informazioni di Base sull'Estensione
Nome | Konva Dev Tool |
ID | liddfplammjmpepmjkokfmgemohhhnnm |
URL Ufficiale | https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm |
Descrizione | devtool for konva |
Dimensione del File | 487 KB |
Conteggio Installazioni | 308 |
Versione Corrente | 0.0.4 |
Ultimo Aggiornamento | 2023-07-04 |
Data di Pubblicazione | 2023-02-10 |
Sviluppatore | nearygy |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/yinguangyao/konva-devtool |
URL della Pagina di Aiuto | https://github.com/yinguangyao/konva-devtool |
Lingue Supportate | 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": [] } |