Swagger UI Converter

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

Cos'è Swagger UI Converter?

Swagger UI Converter è un'estensione di Chrome sviluppata da karim es-souabni, e la sua funzione principale è "Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Swagger UI Converter

Scarica i file di estensione Swagger UI Converter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Swagger UI Converter Swagger UI Converter
ID ocdlaedgcgkkibhmjdnlcmceglecmfoe
URL Ufficiale https://chrome.google.com/webstore/detail/swagger-ui-converter/ocdlaedgcgkkibhmjdnlcmceglecmfoe
Descrizione Displaying a conversion from Json/Yaml swagger file to swagger UI. Working on Github and Bitbucket v6.5
Dimensione del File 1.61 MB
Conteggio Installazioni 144
Versione Corrente 1.0.1
Ultimo Aggiornamento 2019-08-24
Data di Pubblicazione 2019-08-24
Sviluppatore karim es-souabni
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.linkedin.com/in/essouabni/
Lingue Supportate 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"
    ]
}