SAML Chrome Panel

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

SAML Chrome Panelとは何ですか?

SAML Chrome PanelはMLaiによって開発されたChromeの拡張機能で、その主な機能は「Extends the Developer Tools, adding support for SAML Requests and Responses to be displayed in the Developer Tools window」です。

拡張機能のスクリーンショット

screenshot

SAML Chrome Panel拡張機能のCRXファイルをダウンロード

SAML Chrome Panel拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        This is an Open Source SAML debugger for Chrome. It operates as another panel in the Chrome Developer Tools section, which monitors the traffic in the current active tab. This panel is trying to replicate what the Firefox version of SAML Tracer does as there wasn't a good enough one (or any) for Chrome at the time of writing this.

GitHub Repo: https://github.com/milton-lai/saml-chrome-panel
Feel free to branch and help make this even better!

It is designed to display all network traffic, along with the request and response data. If there is a SAML request or response, then it will grab the message, format it nicely and show it to you in another tab.

Updates:
- Set links to open in the same browser
-- There is a new feature to "Scrub" the links in the current page. Basically, it will update all anchor tags and set their target attribute to equal '_self'. This should address the issue of having SAML transactions opening up in new tabs and such. This is the best implementation I could think of as I'm unable to listen to all traffic on all tabs.
- Import and export the network traffic.
-- It imports and exports the traffic on the browser in a JSON format.
- Toggle showing SAML traffic.

Please note that at the moment, I've only looked at OpenAM Redirect and POST SAML transactions (as that is what I've got access to). If there are others which are working, please let me know. If there are SSO frameworks that are not working, then also please let me know and I'll try to get it working (e.g. SOAP).

Thanks to @jasonwzs (https://github.com/jasonwzs) and @AlmogBaku (https://github.com/AlmogBaku) for contributing

Update (2023-06-03):
-- Updating to use Manifest v3. No real changes.

Update (2021-05-02):
-- Fixing update-links functionality

Update (2020-07-18):
-- Updated internal libraries.
-- Reduced extension size.
-- Minor code cleanup.
-- Increased SAML font size.

Update (2017-11-19):
-- Added toggle limit of 500 network requests, to keep memory footprint smaller.
-- Added Search option for the SAML tab.                    

拡張機能の基本情報

名前 SAML Chrome Panel SAML Chrome Panel
ID paijfdbeoenhembfhkhllainmocckace
公式URL https://chromewebstore.google.com/detail/saml-chrome-panel/paijfdbeoenhembfhkhllainmocckace
説明 Extends the Developer Tools, adding support for SAML Requests and Responses to be displayed in the Developer Tools window
ファイルサイズ 183 KB
インストール数 143,942
現在のバージョン 1.9.6
最終更新日 2023-06-05
公開日 2017-11-18
評価 4.06/5 合計 49 レビュー
開発者 MLai
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト http://mlai.org/weblog
ヘルプページのURL https://github.com/milton-lai/saml-chrome-panel
対応言語 en
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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}