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