Swagger Auto Auth

Auto authenticates swagger api endpoints page.

Swagger Auto Auth là gì?

Swagger Auto Auth là một tiện ích mở rộng Chrome được phát triển bởi totaldebug.llc, và tính năng chính của nó là "Auto authenticates swagger api endpoints page.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Swagger Auto Auth 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

                        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 )                    

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

Tên Swagger Auto Auth Swagger Auto Auth
ID oeomghcplmcmkicdkdjdfngkafblepgn
URL Chính Thức https://chromewebstore.google.com/detail/swagger-auto-auth/oeomghcplmcmkicdkdjdfngkafblepgn
Mô tả Auto authenticates swagger api endpoints page.
Kích Thước Tệp 363 KB
Số Lần Cài Đặt 129
Phiên Bản Hiện Tại 0.0.0.3
Cập Nhật Lần Cuối 2021-05-15
Ngày Phát Hành 2021-05-14
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển totaldebug.llc
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Totalbug92/AutoAuthSwagger
URL Trang Trợ Giúp https://github.com/Totalbug92/AutoAuthSwagger
Ngôn Ngữ Được Hỗ Trợ 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"
}