Swagger UI Converter

Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5

Swagger UI Converter là gì?

Swagger UI Converter là một tiện ích mở rộng Chrome được phát triển bởi karim es-souabni, và tính năng chính của nó là "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Swagger UI Converter

Tải xuống các tệp mở rộng Swagger UI Converter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Extension to display the UI representation side by side to swagger Yaml/Json files. 
Works for Github and Bitbucket.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Swagger UI Converter Swagger UI Converter
ID ocdlaedgcgkkibhmjdnlcmceglecmfoe
URL Chính Thức https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe
Mô tả Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
Kích Thước Tệp 1.61 MB
Số Lần Cài Đặt 144
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2019-08-24
Ngày Phát Hành 2019-08-24
Nhà Phát Triển karim es-souabni
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.linkedin.com/in/essouabni/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}