SAML Message Decoder

SAML Message Decoder

Collects and displays SAML messages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "SAML Message Decoder",
  "description": "Collects and displays SAML messages",
  "version": "2.1.1",
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "static/icon_16.png",
      "48": "static/icon_48.png",
      "128": "static/icon_128.png"
    }
  },
  "icons": {
    "16": "static/icon_16.png",
    "48": "static/icon_48.png",
    "128": "static/icon_128.png"
  },
  "permissions": [
    "<all_urls>",
    "webRequest",
    "contextMenus",
    "storage",
    "downloads"
  ],
  "background": {
    "scripts": [
      "listener.js"
    ]
  }
}