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 |
公式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 |
Eメール | [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 } |