Swagger Auto Auth

Auto authenticates swagger api endpoints page.

Wat is Swagger Auto Auth?

Swagger Auto Auth is een Chrome-extensie ontwikkeld door totaldebug.llc, en de belangrijkste functie is "Auto authenticates swagger api endpoints page.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Swagger Auto Auth

Download Swagger Auto Auth-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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 )                    

Basisinformatie over de Extensie

Naam Swagger Auto Auth Swagger Auto Auth
ID oeomghcplmcmkicdkdjdfngkafblepgn
Officiële URL https://chromewebstore.google.com/detail/swagger-auto-auth/oeomghcplmcmkicdkdjdfngkafblepgn
Beschrijving Auto authenticates swagger api endpoints page.
Bestandsgrootte 363 KB
Aantal Installaties 129
Huidige Versie 0.0.0.3
Laatst Bijgewerkt 2021-05-15
Publicatiedatum 2021-05-14
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar totaldebug.llc
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/Totalbug92/AutoAuthSwagger
Help Pagina-URL https://github.com/Totalbug92/AutoAuthSwagger
Ondersteunde Talen 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"
}