OAuth Flows
Troubleshoot Oauth and OIDC applications and decode JWT tokens
Что такое OAuth Flows?
OAuth Flows - это расширение Chrome, разработанное scripturesdev, и его основная функция - "Troubleshoot Oauth and OIDC applications and decode JWT tokens".
Снимки экрана расширения
Скачать файл CRX расширения OAuth Flows
Скачайте файлы расширений 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:\/\/*\/*" ] } |