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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}