Konva Dev Tool

devtool for konva

Konva Dev Tool là gì?

Konva Dev Tool là một tiện ích mở rộng Chrome được phát triển bởi nearygy, và tính năng chính của nó là "devtool for konva".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Konva Dev Tool

Tải xuống các tệp mở rộng Konva Dev Tool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Konva Dev Tool Konva Dev Tool
ID liddfplammjmpepmjkokfmgemohhhnnm
URL Chính Thức https://chromewebstore.google.com/detail/konva-dev-tool/liddfplammjmpepmjkokfmgemohhhnnm
Mô tả devtool for konva
Kích Thước Tệp 487 KB
Số Lần Cài Đặt 308
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2023-07-04
Ngày Phát Hành 2023-02-10
Nhà Phát Triển nearygy
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/yinguangyao/konva-devtool
URL Trang Trợ Giúp https://github.com/yinguangyao/konva-devtool
Ngôn Ngữ Được Hỗ Trợ 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": []
}