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文件
下载Swagger UI Converter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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"
]
} | |