Copy Swagger

Adds copy action to swagger formatted JSON

Qu'est-ce que Copy Swagger ?

Copy Swagger est une extension Chrome développée par notjack, et sa fonction principale est "Adds copy action to swagger formatted JSON".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Copy Swagger

Téléchargez les fichiers d'extension Copy Swagger au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ** 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.                    

Informations de Base sur l'Extension

Nom Copy Swagger Copy Swagger
ID kgddgjghggeikjekaoficmiicgmhapkn
URL Officiel https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn
Description Adds copy action to swagger formatted JSON
Taille du Fichier 175 KB
Nombre d'Installations 37
Version Actuelle 0.3.1
Dernière Mise à Jour 2021-01-20
Date de Publication 2021-01-10
Développeur notjack
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
}