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 هو إضافة Chrome تم تطويرها بواسطة karim es-souabni، والميزة الرئيسية لها هي "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Swagger UI Converter
قم بتنزيل ملفات الامتداد Swagger UI Converter بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
]
} | |