Swagger Auto Auth

Auto authenticates swagger api endpoints page.

Swagger Auto Authคืออะไร?

Swagger Auto Auth เป็นส่วนขยายของ Chrome ที่พัฒนาโดย totaldebug.llc และคุณลักษณะหลักของมันคือ "Auto authenticates swagger api endpoints page."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Swagger Auto Auth

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}