Swagger Auto Auth

Auto authenticates swagger api endpoints page.

什么是Swagger Auto Auth?

Swagger Auto Auth是由totaldebug.llc开发的Chrome扩展程序,该扩展的主要功能是“Auto authenticates swagger api endpoints page.”。

扩展截图

screenshot
screenshot

下载Swagger Auto Auth扩展crx文件

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

扩展使用说明

                        An extension that will automatically fill out an API key of your choice for a swagger ui page. 

The extension stores the API key using chrome.storage, which means it syncs across devices. We take no responsibility regarding any leak of API keys, or other security issues. 


(source code:: https://github.com/Totalbug92/AutoAuthSwagger )                    

扩展基本信息

名称 Swagger Auto Auth Swagger Auto Auth
ID oeomghcplmcmkicdkdjdfngkafblepgn
官方URL https://chromewebstore.google.com/detail/swagger-auto-auth/oeomghcplmcmkicdkdjdfngkafblepgn
简介 Auto authenticates swagger api endpoints page.
文件大小 363 KB
安装次数 129
当前版本 0.0.0.3
更新时间 2021-05-15
上架时间 2021-05-14
评分 5.00/5 共3次评分
开发者 totaldebug.llc
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Totalbug92/AutoAuthSwagger
帮助页面URL https://github.com/Totalbug92/AutoAuthSwagger
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Swagger Auto Auth",
    "description": "Auto authenticates swagger api endpoints page.",
    "version": "0.0.0.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "\/images\/icon\/key_icon128.png"
        }
    },
    "icons": {
        "128": "\/images\/icon\/key_icon128.png"
    },
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "options_page": "options.html"
}