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.

TOTP Auto-Display क्या है?

TOTP Auto-Display Oliver Dickins द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में TOTP Auto-Display एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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                    

एक्सटेंशन की मूल जानकारी

नाम TOTP Auto-Display TOTP Auto-Display
ID pacdgcejfkmbioaelkcacjaecdmkoodc
आधिकारिक URL https://chromewebstore.google.com/detail/totp-auto-display/pacdgcejfkmbioaelkcacjaecdmkoodc
विवरण 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.
फ़ाइल का आकार 52.15 KB
स्थापना संख्या 75
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-05-12
प्रकाशन तिथि 2022-03-30
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Oliver Dickins
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://packages.dickins.dev/TOTP
समर्थित भाषाएँ 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"
    }
}