Coconutool

Chrome and DevTools extension for debugging Cocos Creator V3 games.

什么是Coconutool?

Coconutool是由Raykid开发的Chrome扩展程序,该扩展的主要功能是“Chrome and DevTools extension for debugging Cocos Creator V3 games.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Coconutool扩展crx文件

下载Coconutool扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Coconutool Coconutool
ID cpbcmlplbdlhlpohffilkklbgcdpcfhk
官方URL https://chromewebstore.google.com/detail/coconutool/cpbcmlplbdlhlpohffilkklbgcdpcfhk
简介 Chrome and DevTools extension for debugging Cocos Creator V3 games.
文件大小 731 KB
安装次数 1,191
当前版本 0.1.5
更新时间 2022-02-14
上架时间 2021-12-02
评分 5.00/5 共15次评分
开发者 Raykid
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    ]
}