XML Plus

XML Plus

A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "XML Plus",
  "version": "1.2.3",
  "description": "A powerful XML Viewer, supports text/regex and jQuery/CSS, XPath selectors",
  "author": "eGust",
  "homepage_url": "https://github.com/eGust/xml-plus",
  "icons": {
    "16": "icons/logo-16.png",
    "48": "icons/logo-48.png",
    "128": "icons/logo-128.png"
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "web_accessible_resources": [
    "css/content.css"
  ]
}