Swagger UI Converter
Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
O que é Swagger UI Converter?
Swagger UI Converter é uma extensão do Chrome desenvolvida por karim es-souabni, e sua principal característica é "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Swagger UI Converter
Baixe arquivos de extensão Swagger UI Converter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Extension to display the UI representation side by side to swagger Yaml/Json files.
Works for Github and Bitbucket. Informações Básicas da Extensão
| Nome | |
| ID | ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| URL Oficial | https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| Descrição | Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5 |
| Tamanho do Arquivo | 1.61 MB |
| Contagem de Instalações | 144 |
| Versão Atual | 1.0.1 |
| Última Atualização | 2019-08-24 |
| Data de Publicação | 2019-08-24 |
| Desenvolvedor | karim es-souabni |
| [email protected] | |
| Tipo de Pagamento | free |
| Site da Extensão | https://www.linkedin.com/in/essouabni/ |
| Idiomas Suportados | 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"
]
} | |