AutoJWT

Browser developer extension to automatically find, parse, and copy JWT authorization tokens

¿Qué es AutoJWT?

AutoJWT es una extensión de Chrome desarrollada por Unknown, y su función principal es "Browser developer extension to automatically find, parse, and copy JWT authorization tokens".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión AutoJWT

Descarga archivos de extensión AutoJWT en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        AutoJWT is a tool that aids in the development of websites and APIs that use JSON Web Tokens in their Authorization request headers. It installs as a new tab in Developer Tools. When open, it automatically searches for network requests that contain a JWT authorization header and lists unique examples. These examples can then be selected to:

View the JSON Web Token payload.
See a list of all requests that used the same token.
Open the JWT in a new tab on https://jwt.io.
Copy the JWT to the clipboard.
Copy the Payload to the clipboard.
View request and response contents.                    

Información Básica de la Extensión

Nombre AutoJWT AutoJWT
ID oipoapdoibncigbdbdiphiophmjbdfef
URL Oficial https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef
Descripción Browser developer extension to automatically find, parse, and copy JWT authorization tokens
Tamaño del Archivo 619 KB
Cantidad de Instalaciones 87
Versión Actual 0.5.2
Última Actualización 2021-12-16
Fecha de Publicación 2021-12-15
Desarrollador Unknown
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Jaaromy/autojwt
URL de la Página de Ayuda https://github.com/Jaaromy/autojwt/issues
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AutoJWT",
    "description": "Browser developer extension to automatically find, parse, and copy JWT authorization tokens",
    "version": "0.5.2",
    "manifest_version": 2,
    "permissions": [
        "clipboardWrite"
    ],
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "devtools_page": "devtools.html",
    "icons": {
        "16": "\/images\/get_started16.png",
        "32": "\/images\/get_started32.png",
        "48": "\/images\/get_started48.png",
        "128": "\/images\/get_started128.png"
    }
}