Copy Swagger
Adds copy action to swagger formatted JSON
Was ist Copy Swagger?
Copy Swagger ist eine Chrome-Erweiterung, die von notjack entwickelt wurde, und ihr Hauptmerkmal ist "Adds copy action to swagger formatted JSON".
Erweiterungsscreenshots
Copy Swagger-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Swagger-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
** 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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | kgddgjghggeikjekaoficmiicgmhapkn |
| Offizielle URL | https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn |
| Beschreibung | Adds copy action to swagger formatted JSON |
| Dateigröße | 175 KB |
| Installationsanzahl | 37 |
| Aktuelle Version | 0.3.1 |
| Letztes Update | 2021-01-20 |
| Veröffentlichungsdatum | 2021-01-10 |
| Entwickler | notjack |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |