Swagger Token Manager
An extension to manage swagger auth tokens. That applies bearer token with a single click.
O que é Swagger Token Manager?
Swagger Token Manager é uma extensão do Chrome desenvolvida por minhaz1217, e sua principal característica é "An extension to manage swagger auth tokens. That applies bearer token with a single click.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Swagger Token Manager
Baixe arquivos de extensão Swagger Token Manager no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Swagger Token Manager |
ID | eglckgnbpfmpdjjljhgkolgpggfiknio |
URL Oficial | https://chromewebstore.google.com/detail/swagger-token-manager/eglckgnbpfmpdjjljhgkolgpggfiknio |
Descrição | An extension to manage swagger auth tokens. That applies bearer token with a single click. |
Tamanho do Arquivo | 609 KB |
Contagem de Instalações | 118 |
Versão Atual | 1.2.1 |
Última Atualização | 2022-11-21 |
Data de Publicação | 2022-11-01 |
Desenvolvedor | minhaz1217 |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.minhazul.com/ |
URL da Página de Ajuda | https://github.com/minhaz1217/swagger-profile |
Idiomas Suportados | 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 } } |