Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Cocos Creator Devtoolคืออะไร?

Cocos Creator Devtool เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aztack และคุณลักษณะหลักของมันคือ "Chrome and DevTools extension for debugging Cocos Creator games"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cocos Creator Devtool

ดาวน์โหลดไฟล์ส่วนขยาย 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'"
}