Swagger Auto Auth

Auto authenticates swagger api endpoints page.

Swagger Auto Auth क्या है?

Swagger Auto Auth totaldebug.llc द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Auto authenticates swagger api endpoints page."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Swagger Auto Auth एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
}