OAuth Flows

Troubleshoot Oauth and OIDC applications and decode JWT tokens

OAuth Flowsとは何ですか?

OAuth Flowsはscripturesdevによって開発されたChromeの拡張機能で、その主な機能は「Troubleshoot Oauth and OIDC applications and decode JWT tokens」です。

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

screenshot

OAuth Flows拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension adds a OAuth Flows tab in Google Chrome’s developer tools and monitors OIDC and OAuth traffic on the page you are inspecting. The extension will display all redirect traffic for context, and catches the actual JSON Web Tokens (JWT) transferred, such as the ID_Token and decodes it directly.

It includes a few special features:

* All output is JSON formatted and color coded. 
* Data persists through navigation.
* Built in JWT token decoding.

More features to come. Please do send in recommendations or feature requests.                    

拡張機能の基本情報

名前 OAuth Flows OAuth Flows
ID dandckbjghfejnhmnhloigndkeabdbbo
公式URL https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo
説明 Troubleshoot Oauth and OIDC applications and decode JWT tokens
ファイルサイズ 42.71 KB
インストール数 3,029
現在のバージョン 1.2
最終更新日 2019-01-28
公開日 2019-01-23
評価 4.11/5 合計 9 レビュー
開発者 scripturesdev
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OAuth Flows",
    "version": "1.2",
    "minimum_chrome_version": "10.0",
    "description": "Troubleshoot Oauth and OIDC applications and decode JWT tokens",
    "devtools_page": "background.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "icons": {
        "24": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}