Duo Passcode Generator

Generates HOTP Passcodes for Duo Security Multi-Factor Authentication

Duo Passcode Generator là gì?

Duo Passcode Generator là một tiện ích mở rộng Chrome được phát triển bởi software.avik, và tính năng chính của nó là "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Duo Passcode Generator

Tải xuống các tệp mở rộng Duo Passcode Generator dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Duo Passcode Generator Duo Passcode Generator
ID ilpdnmgdkjanagbdpgppgkjnlgkmdpec
URL Chính Thức https://chromewebstore.google.com/detail/duo-passcode-generator/ilpdnmgdkjanagbdpgppgkjnlgkmdpec
Mô tả Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
Kích Thước Tệp 37.14 KB
Số Lần Cài Đặt 244
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2023-08-14
Ngày Phát Hành 2021-12-27
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển software.avik
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/AvikRao/duo-extension
URL Trang Trợ Giúp https://github.com/AvikRao/duo-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}