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 |
| Eメール | [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"
]
} | |