AutoJWT

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

Co je AutoJWT?

AutoJWT je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Browser developer extension to automatically find, parse, and copy JWT authorization tokens“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AutoJWT

Stáhněte si soubory rozšíření AutoJWT ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název AutoJWT AutoJWT
ID oipoapdoibncigbdbdiphiophmjbdfef
Oficiální URL https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef
Popis Browser developer extension to automatically find, parse, and copy JWT authorization tokens
Velikost souboru 619 KB
Počet instalací 87
Aktuální Verze 0.5.2
Poslední Aktualizace 2021-12-16
Datum Vydání 2021-12-15
Vývojář Unknown
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/Jaaromy/autojwt
URL Stránky Nápovědy https://github.com/Jaaromy/autojwt/issues
Podporované Jazyky 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"
    }
}