OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
What is OAuth Flows?
OAuth Flows is a Chrome extension developed by scripturesdev, and its main feature is "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Extension Screenshots
Download OAuth Flows Extension CRX File
Download OAuth Flows extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
Official URL | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
Description | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
File Size | 42.71 KB |
Installation Count | 3,029 |
Current Version | 1.2 |
Last Updated | 2019-01-28 |
Publish Date | 2019-01-23 |
Rating | 4.11/5 Total 9 Ratings |
Developer | scripturesdev |
[email protected] | |
Payment Type | free |
Supported Languages | 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:\/\/*\/*" ] } |