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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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
확장 프로그램 기본 정보
이름 | Swagger Token Manager |
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 } } |