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.

O que é TOTP Auto-Display?

TOTP Auto-Display é uma extensão do Chrome desenvolvida por Oliver Dickins, e sua principal característica é "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.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão TOTP Auto-Display

Baixe arquivos de extensão TOTP Auto-Display no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome TOTP Auto-Display TOTP Auto-Display
ID pacdgcejfkmbioaelkcacjaecdmkoodc
URL Oficial https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc
Descrição 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.
Tamanho do Arquivo 52.15 KB
Contagem de Instalações 75
Versão Atual 1.0.1
Última Atualização 2023-05-12
Data de Publicação 2022-03-30
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Oliver Dickins
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://packages.dickins.dev/TOTP
Idiomas Suportados 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"
    }
}