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 |
官方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 |
电子邮箱 | [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:\/\/*\/*" ] } |