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”。
扩展截图
下载Duo Passcode Generator扩展crx文件
下载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                     扩展基本信息
| 名称 |   |  
| 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"
        }
    }
}  |  |