Duo Passcode Generator

Generates HOTP Passcodes for Duo Security Multi-Factor Authentication

Duo Passcode Generatorคืออะไร?

Duo Passcode Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย software.avik และคุณลักษณะหลักของมันคือ "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Duo Passcode Generator

ดาวน์โหลดไฟล์ส่วนขยาย Duo Passcode Generator ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Duo Passcode Generator can generate passcodes for Duo Security's multi-factor authentication. It can also autocomplete the passcode field upon generation, allowing instant login after signing in with your normal credentials. Setup and usage instructions can be found at https://github.com/AvikRao/duo-extension/wiki/Setup-and-Usage                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Duo Passcode Generator Duo Passcode Generator
ID ilpdnmgdkjanagbdpgppgkjnlgkmdpec
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/duo-passcode-generator/ilpdnmgdkjanagbdpgppgkjnlgkmdpec
คำอธิบาย Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
ขนาดไฟล์ 37.14 KB
จำนวนการติดตั้ง 244
เวอร์ชันปัจจุบัน 2.0.1
อัปเดตครั้งล่าสุด 2023-08-14
วันที่เผยแพร่ 2021-12-27
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา software.avik
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/AvikRao/duo-extension
URL หน้าช่วยเหลือ https://github.com/AvikRao/duo-extension/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Duo Passcode Generator",
    "description": "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication",
    "version": "2.0.1",
    "manifest_version": 2,
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.duosecurity.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*.duosecurity.com\/*"
    ],
    "browser_action": {
        "default_popup": ".\/popup.html"
    },
    "icons": {
        "16": ".\/assets\/icons\/icon16.png",
        "48": ".\/assets\/icons\/icon48.png",
        "128": ".\/assets\/icons\/icon128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            }
        }
    },
    "applications": {
        "gecko": {
            "id": "duo@extension"
        }
    }
}