Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

What is Cocos Creator Devtool?

Cocos Creator Devtool is a Chrome extension developed by Aztack, and its main feature is "Chrome and DevTools extension for debugging Cocos Creator games".

Extension Screenshots

screenshot

Download Cocos Creator Devtool Extension CRX File

Download Cocos Creator Devtool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
Official URL https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Description Chrome and DevTools extension for debugging Cocos Creator games
File Size 324 KB
Installation Count 2,429
Current Version 1.0.5
Last Updated 2019-06-21
Publish Date 2019-06-21
Rating 3.60/5 Total 15 Ratings
Developer Aztack
Email [email protected]
Payment Type free
Extension Website https://github.com/lingobus/cocos-creator-devtool
Help Page URL https://github.com/lingobus/cocos-creator-devtool/issues
Supported Languages 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'"
}