Copy Swagger
Adds copy action to swagger formatted JSON
什麼是Copy Swagger?
Copy Swagger是由notjack開發的Chrome擴展程式,該擴展的主要功能是“Adds copy action to swagger formatted JSON”。
擴展截圖
下載Copy Swagger擴展crx文件
下載Copy Swagger擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
** 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.
擴展基本資訊
名稱 | Copy Swagger |
ID | kgddgjghggeikjekaoficmiicgmhapkn |
官方網址 | https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn |
簡介 | Adds copy action to swagger formatted JSON |
檔案大小 | 175 KB |
安裝次數 | 37 |
目前版本 | 0.3.1 |
更新時間 | 2021-01-20 |
上架時間 | 2021-01-10 |
開發者 | notjack |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |