Swagger UI Converter
Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
Qu'est-ce que Swagger UI Converter ?
Swagger UI Converter est une extension Chrome développée par karim es-souabni, et sa fonction principale est "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Swagger UI Converter
Téléchargez les fichiers d'extension Swagger UI Converter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Extension to display the UI representation side by side to swagger Yaml/Json files.
Works for Github and Bitbucket. Informations de Base sur l'Extension
| Nom | |
| ID | ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| URL Officiel | https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe |
| Description | Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5 |
| Taille du Fichier | 1.61 MB |
| Nombre d'Installations | 144 |
| Version Actuelle | 1.0.1 |
| Dernière Mise à Jour | 2019-08-24 |
| Date de Publication | 2019-08-24 |
| Développeur | karim es-souabni |
| [email protected] | |
| Type de Paiement | free |
| Site Web de l'Extension | https://www.linkedin.com/in/essouabni/ |
| Langues Prises en Charge | 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"
]
} | |