Copy Swagger

Adds copy action to swagger formatted JSON

What is Copy Swagger?

Copy Swagger is a Chrome extension developed by notjack, and its main feature is "Adds copy action to swagger formatted JSON".

Extension Screenshots

screenshot

Download Copy Swagger Extension CRX File

Download Copy Swagger extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Copy Swagger Copy Swagger
ID kgddgjghggeikjekaoficmiicgmhapkn
Official URL https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn
Description Adds copy action to swagger formatted JSON
File Size 175 KB
Installation Count 37
Current Version 0.3.1
Last Updated 2021-01-20
Publish Date 2021-01-10
Developer notjack
Email [email protected]
Payment Type free
Supported Languages 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
}