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. 擴展基本資訊
| 名稱 | |
| ID | kbfhngekhdipgofmnofbeanadlaakmja |
| 官方網址 | 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
} | |