SAML, WS-Federation and OAuth 2.0 tracer

SAML, WS-Federation and OAuth 2.0 tracer

Trace and decode all SAML, WS-Federation and OAuth 2.0 (OIDC) messages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "SAML, WS-Federation and OAuth 2.0 tracer",
  "short_name": "rcFederation tracer",
  "description": "Trace and decode all SAML, WS-Federation and OAuth 2.0 (OIDC) messages",
  "author": "Rasmus Christiansen (rcfed.com)",
  "homepage_url": "https://rcfed.com/Browser/Tracer",
  "version": "4.3.1",
  "browser_action": {
    "default_icon": "/icon/icon57.png",
    "default_popup": "popup.html",
    "default_title": "rcFederation SAML, WS-Federation and OAuth 2.0 tracer"
  },
  "permissions": [
    "contextMenus",
    "webRequest",
    "*://*/*"
  ],
  "background": {
    "scripts": [
      "eventPage.js",
      "common.js",
      "zipInflate.js",
      "ajaxIntercept.js"
    ],
    "persistent": true
  },
  "icons": {
    "57": "/icon/icon57.png",
    "96": "/icon/icon96.png",
    "128": "/icon/icon128.png",
    "192": "/icon/icon192.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "ajaxInterceptInjector.js"
      ],
      "all_frames": true
    }
  ],
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "web_accessible_resources": [
    "ajaxIntercept.js"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}