Swagger Inspector Extension
Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Co to jest Swagger Inspector Extension?
Swagger Inspector Extension to rozszerzenie Chrome opracowane przez https://inspector.swagger.io, a jego główną funkcją jest „Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Swagger Inspector Extension
Pobierz pliki rozszerzeń Swagger Inspector Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | Swagger Inspector Extension |
ID | biemppheiopfggogojnfpkngdkchelik |
Oficjalny URL | https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik |
Opis | Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection |
Rozmiar pliku | 41.9 KB |
Liczba instalacji | 58,388 |
Aktualna Wersja | 2.2.0 |
Ostatnia Aktualizacja | 2019-01-03 |
Data Publikacji | 2019-01-03 |
Ocena | 3.71/5 Łącznie 7 Oceny |
Deweloper | https://inspector.swagger.io |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |