Swagger Inspector Extension

Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection

Co je Swagger Inspector Extension?

Swagger Inspector Extension je rozšíření Chrome vyvinuté https://inspector.swagger.io, a jeho hlavní funkcí je „Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Swagger Inspector Extension

Stáhněte si soubory rozšíření Swagger Inspector Extension ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                                            

Základní Informace o Rozšíření

Název Swagger Inspector Extension Swagger Inspector Extension
ID biemppheiopfggogojnfpkngdkchelik
Oficiální URL https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik
Popis Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Velikost souboru 41.9 KB
Počet instalací 58,388
Aktuální Verze 2.2.0
Poslední Aktualizace 2019-01-03
Datum Vydání 2019-01-03
Hodnocení 3.71/5 Celkem 7 Hodnocení
Vývojář https://inspector.swagger.io
Typ Platby free
Podporované Jazyky 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"
    ]
}