Coconutool

Chrome and DevTools extension for debugging Cocos Creator V3 games.

Coconutoolคืออะไร?

Coconutool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Raykid และคุณลักษณะหลักของมันคือ "Chrome and DevTools extension for debugging Cocos Creator V3 games."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Coconutool

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}