DOM Square

DOM Square

Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "DOM Square",
  "description": "Extends the Developer Tools, adding a sidebar that helps to use emmet abbreviations and inject code into selected DOM element.",
  "version": "1.0.1",
  "manifest_version": 2,
  "devtools_page": "devtools.html",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "/images/16.png",
    "32": "/images/32.png",
    "48": "/images/48.png",
    "128": "/images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js",
        "jquery.min.js",
        "/inject/plugin/beautify/beautify.min.js",
        "/inject/plugin/beautify/beautify-css.min.js",
        "/inject/plugin/beautify/beautify-html.min.js"
      ]
    }
  ]
}