OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
Qu'est-ce que OAuth Flows ?
OAuth Flows est une extension Chrome développée par scripturesdev, et sa fonction principale est "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension OAuth Flows
Téléchargez les fichiers d'extension OAuth Flows au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | OAuth Flows |
ID | dandckbjghfejnhmnhloigndkeabdbbo |
URL Officiel | https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo |
Description | Troubleshoot Oauth and OIDC applications and decode JWT tokens |
Taille du Fichier | 42.71 KB |
Nombre d'Installations | 3,029 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2019-01-28 |
Date de Publication | 2019-01-23 |
Évaluation | 4.11/5 Total 9 Évaluations |
Développeur | scripturesdev |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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:\/\/*\/*" ] } |