TOTP Auto-Display

Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page.

Cos'è TOTP Auto-Display?

TOTP Auto-Display è un'estensione di Chrome sviluppata da Oliver Dickins, e la sua funzione principale è "Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione TOTP Auto-Display

Scarica i file di estensione TOTP Auto-Display 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

                        This extension will scan a website for values which begin with 'totp://'. When one is found, it will allow the user to click the value to then convert it to a TOTP display, showing the One-Time Password from that secret.

Please also see https://packages.dickins.dev/TOTP                    

Informazioni di Base sull'Estensione

Nome TOTP Auto-Display TOTP Auto-Display
ID pacdgcejfkmbioaelkcacjaecdmkoodc
URL Ufficiale https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc
Descrizione Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp://' is displayed somewhere on the page.
Dimensione del File 52.15 KB
Conteggio Installazioni 75
Versione Corrente 1.0.1
Ultimo Aggiornamento 2023-05-12
Data di Pubblicazione 2022-03-30
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore Oliver Dickins
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://packages.dickins.dev/TOTP
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "TOTP Auto-Display",
    "version": "1.0.1",
    "description": "Shows the OTP code and allows for the code to be copied and pasted when a url of 'totp:\/\/' is displayed somewhere on the page.",
    "manifest_version": 3,
    "author": "Oliver Dickins",
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "sha.js",
                "totp.js"
            ],
            "css": [
                "totp.css"
            ]
        }
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "1616.png",
        "48": "4848.png",
        "128": "128128.png"
    }
}