Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

什么是Cocos Creator Devtool?

Cocos Creator Devtool是由Aztack开发的Chrome扩展程序,该扩展的主要功能是“Chrome and DevTools extension for debugging Cocos Creator games”。

扩展截图

screenshot

下载Cocos Creator Devtool扩展crx文件

下载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'"
}