Swagger UI Converter
Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
Swagger UI Converter란 무엇입니까?
Swagger UI Converter은(는) karim es-souabni에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5"입니다.
확장 프로그램 스크린샷
Swagger UI Converter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Extension to display the UI representation side by side to swagger Yaml/Json files.
Works for Github and Bitbucket. 확장 프로그램 기본 정보
| 이름 | |
| ID | ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| 공식 URL | https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| 설명 | Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5 |
| 파일 크기 | 1.61 MB |
| 설치 횟수 | 144 |
| 현재 버전 | 1.0.1 |
| 최근 업데이트 | 2019-08-24 |
| 출시 날짜 | 2019-08-24 |
| 개발자 | karim es-souabni |
| 이메일 | [email protected] |
| 결제 유형 | free |
| 확장 프로그램 웹 사이트 | https://www.linkedin.com/in/essouabni/ |
| 지원되는 언어 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"description": "__MSG_appDescription__",
"version": "1.0.1",
"short_name": "__MSG_appShortName__",
"manifest_version": 2,
"default_locale": "en",
"icons": {
"16": "images\/icon-16.png",
"48": "images\/icon-48.png",
"128": "images\/icon-128.png"
},
"background": {
"scripts": [
"webextension-toolbox\/client.js",
"scripts\/background.js"
]
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+C",
"mac": "MacCtrl+Shift+C"
},
"description": "Converting Swagger"
}
},
"browser_action": {
"default_title": "Converting !"
},
"options_ui": {
"page": "pages\/options.html",
"chrome_style": true
},
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/bitbucket.org\/*",
"https:\/\/bitbucket\/*",
"http:\/\/bitbucket\/*"
],
"js": [
"scripts\/contentscript.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"permissions": [
"activeTab",
"contextMenus",
"tabs"
]
} | |