Duo Passcode Generator

Generates HOTP Passcodes for Duo Security Multi-Factor Authentication

Cos'è Duo Passcode Generator?

Duo Passcode Generator è un'estensione di Chrome sviluppata da software.avik, e la sua funzione principale è "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Duo Passcode Generator

Scarica i file di estensione Duo Passcode Generator 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

                        Duo Passcode Generator can generate passcodes for Duo Security's multi-factor authentication. It can also autocomplete the passcode field upon generation, allowing instant login after signing in with your normal credentials. Setup and usage instructions can be found at https://github.com/AvikRao/duo-extension/wiki/Setup-and-Usage                    

Informazioni di Base sull'Estensione

Nome Duo Passcode Generator Duo Passcode Generator
ID ilpdnmgdkjanagbdpgppgkjnlgkmdpec
URL Ufficiale https://chromewebstore.google.com/detail/duo-passcode-generator/ilpdnmgdkjanagbdpgppgkjnlgkmdpec
Descrizione Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
Dimensione del File 37.14 KB
Conteggio Installazioni 244
Versione Corrente 2.0.1
Ultimo Aggiornamento 2023-08-14
Data di Pubblicazione 2021-12-27
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore software.avik
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/AvikRao/duo-extension
URL della Pagina di Aiuto https://github.com/AvikRao/duo-extension/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duo Passcode Generator",
    "description": "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication",
    "version": "2.0.1",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duosecurity.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*.duosecurity.com\/*"
    ],
    "browser_action": {
        "default_popup": ".\/popup.html"
    },
    "icons": {
        "16": ".\/assets\/icons\/icon16.png",
        "48": ".\/assets\/icons\/icon48.png",
        "128": ".\/assets\/icons\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        }
    },
    "applications": {
        "gecko": {
            "id": "duo@extension"
        }
    }
}