SAML, WS-Federation and OAuth 2.0 tracer

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

SAML, WS-Federation and OAuth 2.0 tracerคืออะไร?

SAML, WS-Federation and OAuth 2.0 tracer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://rcfed.com และคุณลักษณะหลักของมันคือ "Trace and decode all SAML, WS-Federation and OAuth 2.0 (OIDC) messages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAML, WS-Federation and OAuth 2.0 tracer

ดาวน์โหลดไฟล์ส่วนขยาย SAML, WS-Federation and OAuth 2.0 tracer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

While you browse, the tracer collects all federation messages for you to investigate. The messages are shown in the overview list by occurrence, so you can follow the message flow. Click on the message to view the details in separate windows with syntax highlighting. JWT tokens are automatically decoded. The raw message/token is easily copied to clipboard with a single click.
When messages are signed with an embedded certificate, this will be extracted and can be downloaded from the message.

You can enable/disable the tracer at any time, clear the message list and even remove individual messages from the list.

Export a single message or the whole list to a JSON file.

Using the options, you can change:
- tracing mode (simple/extended)
- number of message to keep in memory
- flag keywords in messages
- type of protocol(s) to trace
- timestamp format
- display order in overview list
- display items in overview list
- icons for message feature in overview list
- syntax highlighting in message details
- choose what happens when you enable/disable the tracer

Feature requests are most welcome. Drop me a mail or use contact form :-)

The extension supports browser Dark Mode.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ SAML, WS-Federation and OAuth 2.0 tracer SAML, WS-Federation and OAuth 2.0 tracer
ID hkodokikbjolckghdnljbkbhacbhpnkb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/saml-ws-federation-and-oa/hkodokikbjolckghdnljbkbhacbhpnkb
คำอธิบาย Trace and decode all SAML, WS-Federation and OAuth 2.0 (OIDC) messages
ขนาดไฟล์ 128 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 4.3.1
อัปเดตครั้งล่าสุด 2022-09-15
วันที่เผยแพร่ 2020-06-01
คะแนน 4.00/5 รวมทั้งหมด 7 คะแนน
ผู้พัฒนา https://rcfed.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://rcfed.com/Browser/Tracer
URL หน้าช่วยเหลือ https://rcfed.com/Contact
URL หน้านโยบายความเป็นส่วนตัว https://rcfed.com/Privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "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": [
                ""
            ],
            "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'"
}