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”。
擴展截圖
下載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 |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
官方網址 | 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 |
電子郵箱 | [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:\/\/*\/*" ] } |