Swagger Inspector Extension
Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Vad är Swagger Inspector Extension?
Swagger Inspector Extension är en Chrome-tillägg utvecklad av https://inspector.swagger.io, och dess huvudfunktion är "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection".
Tilläggsskärmbilder
Ladda ner Swagger Inspector Extension-förlängningens CRX-fil
Ladda ner Swagger Inspector Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Grundläggande Information om Tillägg
| Namn | |
| ID | biemppheiopfggogojnfpkngdkchelik |
| Officiell webbadress | https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik |
| Beskrivning | Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection |
| Filstorlek | 41.9 KB |
| Antal Installationer | 58,388 |
| Aktuell Version | 2.2.0 |
| Senast Uppdaterad | 2019-01-03 |
| Publiceringsdatum | 2019-01-03 |
| Betyg | 3.71/5 Totalt 7 Betyg |
| Utvecklare | https://inspector.swagger.io |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |