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
Eメール [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'"
}