XML Tree

XML Tree

Displays XML data in a user friendly way.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
  "name": "XML Tree",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Displays XML data in a user friendly way.",
  "icons": {
    "48": "xml48x48.png",
    "128": "XML128.png"
  },
  "background": {
    "page": "background.html"
  },
  "web_accessible_resources": [
    "utils.js",
    "options.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "options.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "js": [
        "xmltree.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true
    }
  ]
}