OAuth Flows

Troubleshoot Oauth and OIDC applications and decode JWT tokens

O que é OAuth Flows?

OAuth Flows é uma extensão do Chrome desenvolvida por scripturesdev, e sua principal característica é "Troubleshoot Oauth and OIDC applications and decode JWT tokens".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão OAuth Flows

Baixe arquivos de extensão OAuth Flows no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome OAuth Flows OAuth Flows
ID dandckbjghfejnhmnhloigndkeabdbbo
URL Oficial https://chromewebstore.google.com/detail/oauth-flows/dandckbjghfejnhmnhloigndkeabdbbo
Descrição Troubleshoot Oauth and OIDC applications and decode JWT tokens
Tamanho do Arquivo 42.71 KB
Contagem de Instalações 3,029
Versão Atual 1.2
Última Atualização 2019-01-28
Data de Publicação 2019-01-23
Classificação 4.11/5 Total de 9 Avaliações
Desenvolvedor scripturesdev
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
    ]
}