Duo Passcode Generator
Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
Duo Passcode Generator क्या है?
Duo Passcode Generator software.avik द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Duo Passcode Generator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" } } } |