Swagger Auto Auth

Auto authenticates swagger api endpoints page.

Cos'è Swagger Auto Auth?

Swagger Auto Auth è un'estensione di Chrome sviluppata da totaldebug.llc, e la sua funzione principale è "Auto authenticates swagger api endpoints page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Swagger Auto Auth

Scarica i file di estensione Swagger Auto Auth in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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 )                    

Informazioni di Base sull'Estensione

Nome Swagger Auto Auth Swagger Auto Auth
ID oeomghcplmcmkicdkdjdfngkafblepgn
URL Ufficiale https://chromewebstore.google.com/detail/swagger-auto-auth/oeomghcplmcmkicdkdjdfngkafblepgn
Descrizione Auto authenticates swagger api endpoints page.
Dimensione del File 363 KB
Conteggio Installazioni 129
Versione Corrente 0.0.0.3
Ultimo Aggiornamento 2021-05-15
Data di Pubblicazione 2021-05-14
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore totaldebug.llc
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/Totalbug92/AutoAuthSwagger
URL della Pagina di Aiuto https://github.com/Totalbug92/AutoAuthSwagger
Lingue Supportate 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"
}