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
Eメール [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"
    ]
}