Qooxdoo Tools

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

Co to jest Qooxdoo Tools?

Qooxdoo Tools to rozszerzenie Chrome opracowane przez snowsnorry, a jego główną funkcją jest „Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Qooxdoo Tools

Pobierz pliki rozszerzeń Qooxdoo Tools 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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Qooxdoo Tools Qooxdoo Tools
ID kdobodfpjlfilfoojlmhfikkfmfmnelh
Oficjalny URL https://chromewebstore.google.com/detail/qooxdoo-tools/kdobodfpjlfilfoojlmhfikkfmfmnelh
Opis Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.
Rozmiar pliku 100 KB
Liczba instalacji 114
Aktualna Wersja 2.1.3
Ostatnia Aktualizacja 2016-05-27
Data Publikacji 2016-05-27
Ocena 4.60/5 Łącznie 5 Oceny
Deweloper snowsnorry
Typ Płatności free
Obsługiwane Języki 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
}