Copy Swagger
Adds copy action to swagger formatted JSON
Copy Swagger là gì?
Copy Swagger là một tiện ích mở rộng Chrome được phát triển bởi notjack, và tính năng chính của nó là "Adds copy action to swagger formatted JSON".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Copy Swagger
Tải xuống các tệp mở rộng Copy Swagger dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
** 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Copy Swagger |
ID | kgddgjghggeikjekaoficmiicgmhapkn |
URL Chính Thức | https://chromewebstore.google.com/detail/copy-swagger/kgddgjghggeikjekaoficmiicgmhapkn |
Mô tả | Adds copy action to swagger formatted JSON |
Kích Thước Tệp | 175 KB |
Số Lần Cài Đặt | 37 |
Phiên Bản Hiện Tại | 0.3.1 |
Cập Nhật Lần Cuối | 2021-01-20 |
Ngày Phát Hành | 2021-01-10 |
Nhà Phát Triển | notjack |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |