Swagger Inspector Extension
Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
What is Swagger Inspector Extension?
Swagger Inspector Extension is a Chrome extension developed by https://inspector.swagger.io, and its main feature is "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection".
Extension Screenshots
Download Swagger Inspector Extension Extension CRX File
Download Swagger Inspector Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Extension Basic Information
Name | Swagger Inspector Extension |
ID | biemppheiopfggogojnfpkngdkchelik |
Official URL | https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik |
Description | Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection |
File Size | 41.9 KB |
Installation Count | 58,388 |
Current Version | 2.2.0 |
Last Updated | 2019-01-03 |
Publish Date | 2019-01-03 |
Rating | 3.71/5 Total 7 Ratings |
Developer | https://inspector.swagger.io |
Payment Type | free |
Supported Languages | 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" ] } |