Splunk XML Formatter

Splunk XML Formatter

This extension add 2 boutons in the SplunkUI to format XMLevent

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Splunk XML Formatter",
  "version": "2.5.1",
  "description": "This extension add 2 boutons in the SplunkUI to format XMLevent",
  "manifest_version": 2,
  "author": "Jean-Yves NOLEN <[email protected]>",
  "short_name": "SplunkXMLFormatter",
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "img/splunk-icon-01.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./splunk_xml.js",
        "./highlightjs.min.js",
        "./jquery.min.js"
      ],
      "css": [
        "./splunk_xml.css"
      ],
      "run_at": "document_end"
    }
  ]
}