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”。

扩展截图

screenshot

下载Swagger Inspector Extension扩展crx文件

下载Swagger Inspector Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                                            

扩展基本信息

名称 Swagger Inspector Extension 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"
    ]
}