Duo Passcode Generator
Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
What is Duo Passcode Generator?
Duo Passcode Generator is a Chrome extension developed by software.avik, and its main feature is "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication".
Extension Screenshots
Download Duo Passcode Generator Extension CRX File
Download Duo Passcode Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Duo Passcode Generator |
ID | ilpdnmgdkjanagbdpgppgkjnlgkmdpec |
Official URL | https://chromewebstore.google.com/detail/duo-passcode-generator/ilpdnmgdkjanagbdpgppgkjnlgkmdpec |
Description | Generates HOTP Passcodes for Duo Security Multi-Factor Authentication |
File Size | 37.14 KB |
Installation Count | 244 |
Current Version | 2.0.1 |
Last Updated | 2023-08-14 |
Publish Date | 2021-12-27 |
Rating | 5.00/5 Total 1 Ratings |
Developer | software.avik |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/AvikRao/duo-extension |
Help Page URL | https://github.com/AvikRao/duo-extension/issues |
Supported Languages | 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" } } } |