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
官方網址 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"
    ]
}