Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Wat is Cocos Creator Devtool?

Cocos Creator Devtool is een Chrome-extensie ontwikkeld door Aztack, en de belangrijkste functie is "Chrome and DevTools extension for debugging Cocos Creator games".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Cocos Creator Devtool

Download Cocos Creator Devtool-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
Officiële URL https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Beschrijving Chrome and DevTools extension for debugging Cocos Creator games
Bestandsgrootte 324 KB
Aantal Installaties 2,429
Huidige Versie 1.0.5
Laatst Bijgewerkt 2019-06-21
Publicatiedatum 2019-06-21
Beoordeling 3.60/5 Totaal 15 Beoordelingen
Ontwikkelaar Aztack
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/lingobus/cocos-creator-devtool
Help Pagina-URL https://github.com/lingobus/cocos-creator-devtool/issues
Ondersteunde Talen 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'"
}