SAML Chrome Panel

SAML Chrome Panel

Extends the Developer Tools, adding support for SAML Requests and Responses to be displayed in the Developer Tools window

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SAML Chrome Panel",
  "version": "1.9.6",
  "minimum_chrome_version": "88.0",
  "description": "Extends the Developer Tools, adding support for SAML Requests and Responses to be displayed in the Developer Tools window",
  "devtools_page": "devtools.html",
  "icons": {
    "128": "panel/assets/images/SAMLforChromeLogoSquare128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "panel/assets/javascripts/sameTab.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "panel/assets/javascripts/sameTab.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}