Konva Dev Tool
devtool for konva
Apa itu Konva Dev Tool?
Konva Dev Tool adalah ekstensi Chrome yang dikembangkan oleh nearygy, dan fitur utamanya adalah "devtool for konva".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Konva Dev Tool
Unduh file ekstensi Konva Dev Tool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Konva Dev Tool |
ID | liddfplammjmpepmjkokfmgemohhhnnm |
URL Resmi | https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm |
Deskripsi | devtool for konva |
Ukuran File | 487 KB |
Jumlah Instalasi | 308 |
Versi Saat Ini | 0.0.4 |
Terakhir Diperbarui | 2023-07-04 |
Tanggal Publikasi | 2023-02-10 |
Pengembang | nearygy |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/yinguangyao/konva-devtool |
URL Halaman Bantuan | https://github.com/yinguangyao/konva-devtool |
Bahasa yang Didukung | 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": [] } |