Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Cocos Creator Devtool là gì?

Cocos Creator Devtool là một tiện ích mở rộng Chrome được phát triển bởi Aztack, và tính năng chính của nó là "Chrome and DevTools extension for debugging Cocos Creator games".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cocos Creator Devtool

Tải xuống các tệp mở rộng Cocos Creator Devtool dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
URL Chính Thức https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Mô tả Chrome and DevTools extension for debugging Cocos Creator games
Kích Thước Tệp 324 KB
Số Lần Cài Đặt 2,429
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2019-06-21
Ngày Phát Hành 2019-06-21
Đánh Giá 3.60/5 Tổng số 15 Đánh Giá
Nhà Phát Triển Aztack
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/lingobus/cocos-creator-devtool
URL Trang Trợ Giúp https://github.com/lingobus/cocos-creator-devtool/issues
Ngôn Ngữ Được Hỗ Trợ 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'"
}