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 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"
    ]
}