Swagger Inspector Extension
Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Swagger Inspector Extensionとは何ですか?
Swagger Inspector Extensionはhttps://inspector.swagger.ioによって開発されたChromeの拡張機能で、その主な機能は「Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection」です。
拡張機能のスクリーンショット
Swagger Inspector Extension拡張機能のCRXファイルをダウンロード
Swagger Inspector Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | Swagger Inspector Extension |
ID | biemppheiopfggogojnfpkngdkchelik |
公式URL | https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik |
説明 | Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection |
ファイルサイズ | 41.9 KB |
インストール数 | 58,388 |
現在のバージョン | 2.2.0 |
最終更新日 | 2019-01-03 |
公開日 | 2019-01-03 |
評価 | 3.71/5 合計 7 レビュー |
開発者 | https://inspector.swagger.io |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Swagger Inspector Extension", "description": "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection", "version": "2.2.0", "homepage_url": "https:\/\/inspector.swagger.io", "background": { "persistent": true, "scripts": [ "src\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*.inspector.swagger.io\/*", "https:\/\/*.inspector.swagger.io\/*", "http:\/\/*.alertsite.com\/*", "https:\/\/*.alertsite.com\/*" ], "js": [ "src\/inject-extension-installed.js" ] } ], "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "browser_action": { "default_icon": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "default_title": "Swagger Inspector Extension" }, "permissions": [ "http:\/\/*\/", "https:\/\/*\/", "contextMenus", "webRequest", "webRequestBlocking" ], "externally_connectable": { "matches": [ "*:\/\/*.inspector.swagger.io\/*", "*:\/\/*.inspector.swagger.io:*\/*", "*:\/\/*.alertsite.com\/*", "*:\/\/*.alertsite.com:*\/*" ] }, "web_accessible_resources": [ "images\/16.png", "images\/24.png", "images\/32.png", "images\/48.png", "images\/128.png" ] } |