Inspect and view changes in SAML, WS-Federation and OAuth 2.0 tracer 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
{
"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"
}