JWT Inspector
Display JWT bearer tokens in a new tab in Chrome's Developer Tools
What is JWT Inspector?
JWT Inspector is a Chrome extension developed by Tore Green, and its main feature is "Display JWT bearer tokens in a new tab in Chrome's Developer Tools".
Extension Screenshots
Download JWT Inspector Extension CRX File
Download JWT Inspector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Are you sending JWT tokens in your HTTP requests? Tired of copying tokens from the developer view into jwt.io when debugging? This extension will detect HTTP(S) requests with an Authorization header containing a JWT bearer token, and conveniently display the contents of the token in Chrome's developer tools pane. New: HTTP header name and prefix can be customized in extension options. Prefix can be included when copying token to clipboard.
Extension Basic Information
Name | JWT Inspector |
ID | jgjihoodklabhdoeffdjofnknfijolgk |
Official URL | https://chromewebstore.google.com/detail/jwt-inspector/jgjihoodklabhdoeffdjofnknfijolgk |
Description | Display JWT bearer tokens in a new tab in Chrome's Developer Tools |
File Size | 18.42 KB |
Installation Count | 12,281 |
Current Version | 1.6.1 |
Last Updated | 2022-01-31 |
Publish Date | 2019-11-23 |
Rating | 4.60/5 Total 5 Ratings |
Developer | Tore Green |
[email protected] | |
Payment Type | free |
Extension Website | https://bugjam.github.io/jwt-inspector/ |
Help Page URL | https://github.com/bugjam/jwt-inspector/issues |
Privacy Policy Page URL | https://bugjam.github.io/jwt-inspector/privacy.html |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JWT Inspector", "short_name": "JWT", "version": "1.6.1", "description": "Display JWT bearer tokens in a new tab in Chrome's Developer Tools", "author": "Tore Green", "icons": { "128": "icon128.png", "48": "icon48.png" }, "homepage_url": "https:\/\/bugjam.github.io\/jwt-inspector\/", "devtools_page": "devtools.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "incognito": "split", "manifest_version": 2 } |