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
官方網址 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'"
}