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.

Vad är TOTP Auto-Display?

TOTP Auto-Display är en Chrome-tillägg utvecklad av Oliver Dickins, och dess huvudfunktion är "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.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner TOTP Auto-Display-förlängningens CRX-fil

Ladda ner TOTP Auto-Display-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn TOTP Auto-Display TOTP Auto-Display
ID pacdgcejfkmbioaelkcacjaecdmkoodc
Officiell webbadress https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc
Beskrivning 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.
Filstorlek 52.15 KB
Antal Installationer 75
Aktuell Version 1.0.1
Senast Uppdaterad 2023-05-12
Publiceringsdatum 2022-03-30
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare Oliver Dickins
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://packages.dickins.dev/TOTP
Stödda Språk 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"
    }
}