Cocos Creator Devtool

Chrome and DevTools extension for debugging Cocos Creator games

Co to jest Cocos Creator Devtool?

Cocos Creator Devtool to rozszerzenie Chrome opracowane przez Aztack, a jego główną funkcją jest „Chrome and DevTools extension for debugging Cocos Creator games”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Cocos Creator Devtool

Pobierz pliki rozszerzeń Cocos Creator Devtool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Cocos Creator Devtool Cocos Creator Devtool
ID cnmkiolbnmjlhdkabcgobbgdomhhdnho
Oficjalny URL https://chromewebstore.google.com/detail/cocos-creator-devtool/cnmkiolbnmjlhdkabcgobbgdomhhdnho
Opis Chrome and DevTools extension for debugging Cocos Creator games
Rozmiar pliku 324 KB
Liczba instalacji 2,429
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2019-06-21
Data Publikacji 2019-06-21
Ocena 3.60/5 Łącznie 15 Oceny
Deweloper Aztack
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/lingobus/cocos-creator-devtool
Adres URL Strony Pomocy https://github.com/lingobus/cocos-creator-devtool/issues
Obsługiwane Języki 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'"
}