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"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swagger UI Converter

ดาวน์โหลดไฟล์ส่วนขยาย 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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Swagger UI Converter Swagger UI Converter
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"
    ]
}