Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Τι είναι το Cocos Creator Devtool;

Το Cocos Creator Devtool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Aztack, και η κύρια λειτουργία του είναι "Chrome and DevTools extension for debugging Cocos Creator games".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Cocos Creator Devtool

Λήψη αρχείων επέκτασης Cocos Creator Devtool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        You can inspect the game internal node structure and modify some properties of the node with this extension.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
Επίσημο URL https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Περιγραφή Chrome and DevTools extension for debugging Cocos Creator games
Μέγεθος Αρχείου 324 KB
Αριθμός Εγκαταστάσεων 2,429
Τρέχουσα Έκδοση 1.0.5
Τελευταία Ενημέρωση 2019-06-21
Ημερομηνία Δημοσίευσης 2019-06-21
Αξιολόγηση 3.60/5 Συνολικά 15 Αξιολογήσεις
Προγραμματιστής Aztack
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/lingobus/cocos-creator-devtool
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lingobus/cocos-creator-devtool/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cocos Creator Devtool",
    "version": "1.0.5",
    "description": "Chrome and DevTools extension for debugging Cocos Creator games",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Cocos Creator Devtool",
        "default_icon": "img\/48.png",
        "default_popup": "html\/popup-not-found.html"
    },
    "icons": {
        "16": "img\/16.png",
        "48": "img\/48.png",
        "128": "img\/128.png"
    },
    "devtools_page": "html\/devtool.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/cc-devtool-contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/cc-devtool-backgroundScript.js"
        ]
    },
    "web_accessible_resources": [
        "*\/*",
        "*"
    ],
    "permissions": [
        "tabs",
        "storage",
        "nativeMessaging",
        "webNavigation",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "file:\/\/\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval';  object-src 'self'"
}