JWT
Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.
什么是JWT?
JWT是由Sandip Chitale开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.”。
扩展截图
下载JWT扩展crx文件
下载JWT扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Chrome extension to show decoded JWT token used by the last HTTP request using it.
扩展基本信息
名称 | JWT |
ID | kbfhngekhdipgofmnofbeanadlaakmja |
官方URL | https://chromewebstore.google.com/detail/jwt/kbfhngekhdipgofmnofbeanadlaakmja |
简介 | Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers. |
文件大小 | 14.86 KB |
安装次数 | 2,061 |
当前版本 | 1.1 |
更新时间 | 2018-09-01 |
上架时间 | 2018-09-01 |
开发者 | Sandip Chitale |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sandipchitale/JWT |
帮助页面URL | https://github.com/sandipchitale/JWT/issues |
支持的语言 | 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 } |