OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
Hvad er OAuth Flows?
OAuth Flows er en Chrome-udvidelse udviklet af scripturesdev, og dens hovedfunktion er "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Udvidelsesskærmbilleder
Download OAuth Flows-udvidelses-CRX-fil
Download OAuth Flows-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
Officiel URL | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
Beskrivelse | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
Filstørrelse | 42.71 KB |
Antal Installationer | 3,029 |
Nuværende Version | 1.2 |
Senest Opdateret | 2019-01-28 |
Udgivelsesdato | 2019-01-23 |
Bedømmelse | 4.11/5 Samlet 9 Bedømmelser |
Udvikler | scripturesdev |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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:\/\/*\/*" ] } |