Konva Dev Tool
devtool for konva
什么是Konva Dev Tool?
Konva Dev Tool是由nearygy开发的Chrome扩展程序,该扩展的主要功能是“devtool for konva”。
扩展截图
下载Konva Dev Tool扩展crx文件
下载Konva Dev Tool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
帮助页面URL | 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": [] } |