Examine source code of SAML Message Decoder

Inspect and view changes in SAML Message Decoder source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
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"
    ]
  }
}