Swagger UI Converter

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

Co je Swagger UI Converter?

Swagger UI Converter je rozšíření Chrome vyvinuté karim es-souabni, a jeho hlavní funkcí je „Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Swagger UI Converter

Stáhněte si soubory rozšíření Swagger UI Converter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Swagger UI Converter Swagger UI Converter
ID ocdlaedgcgkkibhmjdnlcmceglecmfoe
Oficiální URL https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe
Popis Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
Velikost souboru 1.61 MB
Počet instalací 144
Aktuální Verze 1.0.1
Poslední Aktualizace 2019-08-24
Datum Vydání 2019-08-24
Vývojář karim es-souabni
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://www.linkedin.com/in/essouabni/
Podporované Jazyky 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"
    ]
}