Swagger Token Manager
An extension to manage swagger auth tokens. That applies bearer token with a single click.
什麼是Swagger Token Manager?
Swagger Token Manager是由minhaz1217開發的Chrome擴展程式,該擴展的主要功能是“An extension to manage swagger auth tokens. That applies bearer token with a single click.”。
擴展截圖
下載Swagger Token Manager擴展crx文件
下載Swagger Token Manager擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Motivation -
When working with swagger, I had to keep track of 10+ different JWT token. I used to do that by saving all these in a file and copy pasting them when I need one of them. Another problem was that every time I had to reload the page the token would get removed and I would have to apply the token all over again.
So I made this extension to do all these. It can apply token in swagger UI page. Or it can copy to clipboard.
Features -
- Ability to apply token in the swagger ui (the website)
- Ability to copy token to clipboard.
- Ability to add profile with token
- Ability to edit or delete profile 擴展基本資訊
| 名稱 | |
| ID | eglckgnbpfmpdjjljhgkolgpggfiknio |
| 官方網址 | https://chromewebstore.google.com/detail/swagger-token-manager/eglckgnbpfmpdjjljhgkolgpggfiknio |
| 簡介 | An extension to manage swagger auth tokens. That applies bearer token with a single click. |
| 檔案大小 | 609 KB |
| 安裝次數 | 118 |
| 目前版本 | 1.2.1 |
| 更新時間 | 2022-11-21 |
| 上架時間 | 2022-11-01 |
| 開發者 | minhaz1217 |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.minhazul.com/ |
| 說明頁面URL | https://github.com/minhaz1217/swagger-profile |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Swagger Token Manager",
"version": "1.2.1",
"description": "An extension to manage swagger auth tokens. That applies bearer token with a single click.",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png",
"256": "icons\/icon-256.png",
"512": "icons\/icon-16.png"
},
"permissions": [
"scripting",
"storage"
],
"manifest_version": 3,
"host_permissions": [
"*:\/\/*\/*"
],
"action": {
"name": "Swagger Profile Manager",
"default_icon": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png",
"256": "icons\/icon-256.png",
"512": "icons\/icon-16.png"
},
"default_title": "Swagger Profile Manager",
"default_popup": "popup\/index.html",
"browser_style": true
}
} | |