Qooxdoo Tools

Qooxdoo Tools

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

Merlin
Additional files are visible only to premium users

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": [
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "devtools_page": "devtools.html",
  "manifest_version": 2
}