SAML-tracer

SAML-tracer

A debugger for viewing SAML messages

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SAML-tracer",
  "description": "A debugger for viewing SAML messages",
  "author": "Olav Morken, Jaime Perez, Thijs Kinkhorst, Jan Köhler",
  "manifest_version": 2,
  "version": "1.7.1",
  "homepage_url": "https://github.com/SimpleSAMLphp/SAML-tracer",
  "icons": {
    "16": "src/resources/images/icon16.png",
    "32": "src/resources/images/icon32.png",
    "48": "src/resources/images/icon48.png",
    "96": "src/resources/images/icon96.png",
    "128": "src/resources/images/icon128.png"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "<all_urls>"
  ],
  "background": {
    "scripts": [
      "bootstrap.js"
    ]
  },
  "browser_action": {
    "default_icon": {
      "16": "src/resources/images/icon16.png",
      "32": "src/resources/images/icon32.png",
      "48": "src/resources/images/icon48.png",
      "96": "src/resources/images/icon96.png",
      "128": "src/resources/images/icon128.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Alt+Shift+S"
      },
      "description": "Opens SAML-tracer if it's not yet started or brings it back to the front if it's already started."
    }
  }
}