Qooxdoo Tools

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

什么是Qooxdoo Tools?

Qooxdoo Tools是由snowsnorry开发的Chrome扩展程序,该扩展的主要功能是“Extends the Developer Tools, adding a sidebar that displays the Qooxdoo data associated with the selected DOM element.”。

扩展截图

screenshot
screenshot

下载Qooxdoo Tools扩展crx文件

下载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
}