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 |
| 公式URL | 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 |
| Eメール | [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
}
} | |