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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة TOTP Auto-Display

قم بتنزيل ملفات الامتداد TOTP Auto-Display بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
    }
}