Copy Swagger
Adds copy action to swagger formatted JSON
Copy Swagger란 무엇입니까?
Copy Swagger은(는) notjack에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds copy action to swagger formatted JSON"입니다.
확장 프로그램 스크린샷
Copy Swagger 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
** In no way am I affiliated with the Swagger team ** Does copying long text from swagger responses give you carpal tunnel? Does it make you want to throw your computer out of a window when all of the text doesn't copy and you have to do it over again? There must be a better way! Well, look no further.
확장 프로그램 기본 정보
이름 | Copy Swagger |
ID | kgddgjghggeikjekaoficmiicgmhapkn |
공식 URL | https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn |
설명 | Adds copy action to swagger formatted JSON |
파일 크기 | 175 KB |
설치 횟수 | 37 |
현재 버전 | 0.3.1 |
최근 업데이트 | 2021-01-20 |
출시 날짜 | 2021-01-10 |
개발자 | notjack |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Copy Swagger", "version": "0.3.1", "description": "Adds copy action to swagger formatted JSON", "browser_action": { "default_icon": "copy-logo19.png", "default_title": "Copy Swag" }, "minimum_chrome_version": "14", "content_scripts": [ { "matches": [ "*:\/\/*\/swagger*", "*:\/\/*.swagger.io\/*" ], "all_frames": true, "js": [ "content_script.js" ], "css": [ "background.css" ], "run_at": "document_end" } ], "icons": { "16": "copy-logo16.png", "48": "copy-logo48.png", "128": "copy-logo128.png", "256": "copy-logo256.png" }, "web_accessible_resources": [ "background.js" ], "manifest_version": 2 } |