Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Qu'est-ce que Cocos Creator Devtool ?

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

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Cocos Creator Devtool

Téléchargez les fichiers d'extension Cocos Creator Devtool 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

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

Informations de Base sur l'Extension

Nom Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
URL Officiel https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Description Chrome and DevTools extension for debugging Cocos Creator games
Taille du Fichier 324 KB
Nombre d'Installations 2,429
Version Actuelle 1.0.5
Dernière Mise à Jour 2019-06-21
Date de Publication 2019-06-21
Évaluation 3.60/5 Total 15 Évaluations
Développeur Aztack
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/lingobus/cocos-creator-devtool
URL de la Page d'Aide https://github.com/lingobus/cocos-creator-devtool/issues
Langues Prises en Charge 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'"
}