Copy Swagger

Adds copy action to swagger formatted JSON

O que é Copy Swagger?

Copy Swagger é uma extensão do Chrome desenvolvida por notjack, e sua principal característica é "Adds copy action to swagger formatted JSON".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Copy Swagger

Baixe arquivos de extensão Copy Swagger no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ** In no way am I affiliated with the Swagger team **

Does copying long text from swagger responses give you carpal tunnel? Does it make you want to throw your computer out of a window when all of the text doesn't copy and you have to do it over again? There must be a better way! Well, look no further.                    

Informações Básicas da Extensão

Nome Copy Swagger Copy Swagger
ID kgddgjghggeikjekaoficmiicgmhapkn
URL Oficial https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn
Descrição Adds copy action to swagger formatted JSON
Tamanho do Arquivo 175 KB
Contagem de Instalações 37
Versão Atual 0.3.1
Última Atualização 2021-01-20
Data de Publicação 2021-01-10
Desenvolvedor notjack
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Copy Swagger",
    "version": "0.3.1",
    "description": "Adds copy action to swagger formatted JSON",
    "browser_action": {
        "default_icon": "copy-logo19.png",
        "default_title": "Copy Swag"
    },
    "minimum_chrome_version": "14",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/swagger*",
                "*:\/\/*.swagger.io\/*"
            ],
            "all_frames": true,
            "js": [
                "content_script.js"
            ],
            "css": [
                "background.css"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "copy-logo16.png",
        "48": "copy-logo48.png",
        "128": "copy-logo128.png",
        "256": "copy-logo256.png"
    },
    "web_accessible_resources": [
        "background.js"
    ],
    "manifest_version": 2
}