AutoJWT

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

Qu'est-ce que AutoJWT ?

AutoJWT est une extension Chrome développée par Unknown, et sa fonction principale est "Browser developer extension to automatically find, parse, and copy JWT authorization tokens".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension AutoJWT

Téléchargez les fichiers d'extension AutoJWT 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

                        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.                    

Informations de Base sur l'Extension

Nom AutoJWT AutoJWT
ID oipoapdoibncigbdbdiphiophmjbdfef
URL Officiel https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef
Description Browser developer extension to automatically find, parse, and copy JWT authorization tokens
Taille du Fichier 619 KB
Nombre d'Installations 87
Version Actuelle 0.5.2
Dernière Mise à Jour 2021-12-16
Date de Publication 2021-12-15
Développeur Unknown
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/Jaaromy/autojwt
URL de la Page d'Aide https://github.com/Jaaromy/autojwt/issues
Langues Prises en Charge 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"
    }
}