Swagger Token Manager
An extension to manage swagger auth tokens. That applies bearer token with a single click.
Что такое Swagger Token Manager?
Swagger Token Manager - это расширение Chrome, разработанное minhaz1217, и его основная функция - "An extension to manage swagger auth tokens. That applies bearer token with a single click.".
Снимки экрана расширения
Скачать файл CRX расширения Swagger Token Manager
Скачайте файлы расширений 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 |
| Электронная почта | [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
}
} | |