AutoJWT
Browser developer extension to automatically find, parse, and copy JWT authorization tokens
Cos'è AutoJWT?
AutoJWT è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Browser developer extension to automatically find, parse, and copy JWT authorization tokens".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AutoJWT
Scarica i file di estensione AutoJWT in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | oipoapdoibncigbdbdiphiophmjbdfef |
| URL Ufficiale | https://chromewebstore.google.com/detail/autojwt/oipoapdoibncigbdbdiphiophmjbdfef |
| Descrizione | Browser developer extension to automatically find, parse, and copy JWT authorization tokens |
| Dimensione del File | 619 KB |
| Conteggio Installazioni | 87 |
| Versione Corrente | 0.5.2 |
| Ultimo Aggiornamento | 2021-12-16 |
| Data di Pubblicazione | 2021-12-15 |
| Sviluppatore | Unknown |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Jaaromy/autojwt |
| URL della Pagina di Aiuto | https://github.com/Jaaromy/autojwt/issues |
| Lingue Supportate | 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"
}
} | |