Swagger Inspector Extension

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

Swagger Inspector Extension là gì?

Swagger Inspector Extension là một tiện ích mở rộng Chrome được phát triển bởi https://inspector.swagger.io, và tính năng chính của nó là "Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Swagger Inspector Extension

Tải xuống các tệp mở rộng Swagger Inspector Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                                            

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Swagger Inspector Extension Swagger Inspector Extension
ID biemppheiopfggogojnfpkngdkchelik
URL Chính Thức https://chromewebstore.google.com/detail/swagger-inspector-extensi/biemppheiopfggogojnfpkngdkchelik
Mô tả Allows the Swagger Inspector and AlertSite to bypass CORS and security-scheme related browser-restrictions for API inspection
Kích Thước Tệp 41.9 KB
Số Lần Cài Đặt 58,388
Phiên Bản Hiện Tại 2.2.0
Cập Nhật Lần Cuối 2019-01-03
Ngày Phát Hành 2019-01-03
Đánh Giá 3.71/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://inspector.swagger.io
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}