Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Apa itu Cocos Creator Devtool?

Cocos Creator Devtool adalah ekstensi Chrome yang dikembangkan oleh Aztack, dan fitur utamanya adalah "Chrome and DevTools extension for debugging Cocos Creator games".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cocos Creator Devtool

Unduh file ekstensi Cocos Creator Devtool dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
URL Resmi https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Deskripsi Chrome and DevTools extension for debugging Cocos Creator games
Ukuran File 324 KB
Jumlah Instalasi 2,429
Versi Saat Ini 1.0.5
Terakhir Diperbarui 2019-06-21
Tanggal Publikasi 2019-06-21
Penilaian 3.60/5 Total 15 Penilaian
Pengembang Aztack
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/lingobus/cocos-creator-devtool
URL Halaman Bantuan https://github.com/lingobus/cocos-creator-devtool/issues
Bahasa yang Didukung 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'"
}