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