Qooxdoo Tools

Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.

Что такое Qooxdoo Tools?

Qooxdoo Tools - это расширение Chrome, разработанное snowsnorry, и его основная функция - "Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Qooxdoo Tools

Скачайте файлы расширений Qooxdoo Tools в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element. Use $q in console to work with selected widget.                    

Основная информация о расширении

Название Qooxdoo Tools Qooxdoo Tools
ID kdobodfpjlfilfoojlmhfikkfmfmnelh
Официальный URL https://chromewebstore.google.com/detail/qooxdoo-tools/kdobodfpjlfilfoojlmhfikkfmfmnelh
Описание Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.
Размер файла 100 KB
Количество установок 114
Текущая Версия 2.1.3
Последнее Обновление 2016-05-27
Дата публикации 2016-05-27
Рейтинг 4.60/5 Всего 5 оценок
Разработчик snowsnorry
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Qooxdoo Tools",
    "version": "2.1.3",
    "icons": {
        "16": "qooxdoo_16.png",
        "32": "qooxdoo_32.png",
        "48": "qooxdoo_48.png",
        "64": "qooxdoo_64.png",
        "128": "qooxdoo_128.png"
    },
    "description": "Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.",
    "permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "devtools_page": "devtools.html",
    "manifest_version": 2
}