Coconutool

Chrome and DevTools extension for debugging Cocos Creator V3 games.

Qu'est-ce que Coconutool ?

Coconutool est une extension Chrome développée par Raykid, et sa fonction principale est "Chrome and DevTools extension for debugging Cocos Creator V3 games.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Coconutool

Téléchargez les fichiers d'extension Coconutool au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Coconutool Coconutool
ID cpbcmlplbdlhlpohffilkklbgcdpcfhk
URL Officiel https://chromewebstore.google.com/detail/coconutool/cpbcmlplbdlhlpohffilkklbgcdpcfhk
Description Chrome and DevTools extension for debugging Cocos Creator V3 games.
Taille du Fichier 731 KB
Nombre d'Installations 1,191
Version Actuelle 0.1.5
Dernière Mise à Jour 2022-02-14
Date de Publication 2021-12-02
Évaluation 5.00/5 Total 15 Évaluations
Développeur Raykid
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    ]
}