Coconutool

Chrome and DevTools extension for debugging Cocos Creator V3 games.

Coconutool là gì?

Coconutool là một tiện ích mở rộng Chrome được phát triển bởi Raykid, và tính năng chính của nó là "Chrome and DevTools extension for debugging Cocos Creator V3 games.".

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

screenshot
screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng Coconutool 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

                        Chrome devtool for debugging games that made by Cocos Creator V3.

You can do several things below:
1. Inspect game internal node and modify properties of it.
2. Modify internal components just like that in IDE.
3. Modify CUSTOM COMPONENTS just like that in IDE. This may help you adjusting configs without switching between Chrome & IDE, and no need to rerun the game time after time.
4. Change node's display index with drag&drop.                    

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

Tên Coconutool Coconutool
ID cpbcmlplbdlhlpohffilkklbgcdpcfhk
URL Chính Thức https://chromewebstore.google.com/detail/coconutool/cpbcmlplbdlhlpohffilkklbgcdpcfhk
Mô tả Chrome and DevTools extension for debugging Cocos Creator V3 games.
Kích Thước Tệp 731 KB
Số Lần Cài Đặt 1,191
Phiên Bản Hiện Tại 0.1.5
Cập Nhật Lần Cuối 2022-02-14
Ngày Phát Hành 2021-12-02
Đánh Giá 5.00/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Raykid
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Coconutool",
    "version": "0.1.5",
    "description": "Chrome and DevTools extension for debugging Cocos Creator V3 games.",
    "icons": {
        "16": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "injected.js"
            ]
        }
    ],
    "devtools_page": "assets\/devtools.html",
    "action": {
        "default_title": "Coconutool"
    },
    "permissions": [
        "webNavigation"
    ]
}