Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Cos'è Cocos Creator Devtool?

Cocos Creator Devtool è un'estensione di Chrome sviluppata da Aztack, e la sua funzione principale è "Chrome and DevTools extension for debugging Cocos Creator games".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cocos Creator Devtool

Scarica i file di estensione Cocos Creator Devtool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
URL Ufficiale https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Descrizione Chrome and DevTools extension for debugging Cocos Creator games
Dimensione del File 324 KB
Conteggio Installazioni 2,429
Versione Corrente 1.0.5
Ultimo Aggiornamento 2019-06-21
Data di Pubblicazione 2019-06-21
Valutazione 3.60/5 Totale 15 Valutazioni
Sviluppatore Aztack
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/lingobus/cocos-creator-devtool
URL della Pagina di Aiuto https://github.com/lingobus/cocos-creator-devtool/issues
Lingue Supportate 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'"
}