OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
Was ist OAuth Flows?
OAuth Flows ist eine Chrome-Erweiterung, die von scripturesdev entwickelt wurde, und ihr Hauptmerkmal ist "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Erweiterungsscreenshots
OAuth Flows-Erweiterungs-CRX-Datei herunterladen
Laden Sie OAuth Flows-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
Offizielle URL | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
Beschreibung | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
Dateigröße | 42.71 KB |
Installationsanzahl | 3,029 |
Aktuelle Version | 1.2 |
Letztes Update | 2019-01-28 |
Veröffentlichungsdatum | 2019-01-23 |
Bewertung | 4.11/5 Insgesamt 9 Bewertungen |
Entwickler | scripturesdev |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } |