Duo Passcode Generator

Generates HOTP Passcodes for Duo Security Multi-Factor Authentication

Duo Passcode Generator란 무엇입니까?

Duo Passcode Generator은(는) software.avik에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Duo Passcode Generator 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}