Duo Passcode Generator
Generates HOTP Passcodes for Duo Security Multi-Factor Authentication
ما هو Duo Passcode Generator؟
Duo Passcode Generator هو إضافة Chrome تم تطويرها بواسطة software.avik، والميزة الرئيسية لها هي "Generates HOTP Passcodes for Duo Security Multi-Factor Authentication".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Duo Passcode Generator
قم بتنزيل ملفات الامتداد Duo Passcode Generator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" } } } |