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. 扩展基本信息
| 名称 | |
| ID | kgddgjghggeikjekaoficmiicgmhapkn |
| 官方URL | 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
} | |