JWT
Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.
What is JWT?
JWT is a Chrome extension developed by Sandip Chitale, and its main feature is "Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.".
Extension Screenshots
Download JWT Extension CRX File
Download JWT 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
Chrome extension to show decoded JWT token used by the last HTTP request using it.
Extension Basic Information
Name | JWT |
ID | kbfhngekhdipgofmnofbeanadlaakmja |
Official URL | https://chromewebstore.google.com/detail/jwt/kbfhngekhdipgofmnofbeanadlaakmja |
Description | Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers. |
File Size | 14.86 KB |
Installation Count | 2,061 |
Current Version | 1.1 |
Last Updated | 2018-09-01 |
Publish Date | 2018-09-01 |
Developer | Sandip Chitale |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/sandipchitale/JWT |
Help Page URL | https://github.com/sandipchitale/JWT/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "JWT", "version": "1.1", "description": "Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.", "permissions": [ "tabs", "activeTab", "webRequest", "declarativeContent", "http:\/\/*:*\/*", "https:\/\/*:*\/*" ], "background": { "scripts": [ "jwt.js" ] }, "page_action": { "default_title": "JWT", "default_popup": "jwtpopup.html", "show_matches": [ "http:\/\/*:*\/*", "https:\/\/*:*\/*" ], "default_icon": { "16": "jwt.png", "24": "jwt.png", "32": "jwt.png" } }, "manifest_version": 2 } |