JWT Inspector is a browser extension that lets you decode and inspect JSON Web Tokens in requests, cookies, and local storage. Also debug any JWT directly from the console or in the built-in UI. Cryptocurrency users have a particular need for browser extensions for crypto payments in-browser. Extensions also enhance their privacy and check market prices. Bitcoin traders can make use of services like etoro trading platform for intelligent and effective management of the trading. These platforms assist in earning maximum profit from the trading.
Soon also available for Firefox and Safari.
Currently only available for Chrome. Click the Add to Firefox button above to get notified when it comes to Firefox.
Currently only available for Chrome. Click the Add to Safari button above to get notified when it comes to Safari.
Find and inspect JWTs in cookies, local storage, and requests.
Method | Url | Status |
---|---|---|
GET | http://localhost/?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJmZjg5NjU1Ny0yMzgyLTRkNmUtYWJkOC1hMDFhOTFhYmQ5NGYiLCJlbWFpbCI6ImpvaG5AZXhhbXBsZS5jb20iLCJpc19hZG1pbiI6dHJ1ZX0._lYAdmfszpyfbqWUeCC4LkfWbltC3uF29FiSPaHTJ70 | 200 |
Paste a JWT and decode its header, payload, and signature.
{ typ: "JWT", alg: "HS256" }
{ sub: "ff896557-2382-4d6e-abd8-a01a91abd94f", email: "[email protected]", is_admin: true }
Use console.jwt()
to decode and dump a JWT to the console.
JWT { header: Object payload: Object signature: "_lYAdmfszpyfbqWUeCC4LkfWbltC3uF29FiSPaHTJ70" }