Konva Dev Tool
devtool for konva
ما هو Konva Dev Tool؟
Konva Dev Tool هو إضافة Chrome تم تطويرها بواسطة nearygy، والميزة الرئيسية لها هي "devtool for konva".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Konva Dev Tool
قم بتنزيل ملفات الامتداد Konva Dev Tool بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Konva Dev Tool |
ID | liddfplammjmpepmjkokfmgemohhhnnm |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm |
الوصف | devtool for konva |
حجم الملف | 487 KB |
عدد التثبيتات | 308 |
النسخة الحالية | 0.0.4 |
آخر تحديث | 2023-07-04 |
تاريخ النشر | 2023-02-10 |
المطور | nearygy |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/yinguangyao/konva-devtool |
عنوان صفحة المساعدة | https://github.com/yinguangyao/konva-devtool |
اللغات المدعومة | 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": [] } |