Duochrome
Login through Duo Mobile in your browser.
ما هو Duochrome؟
Duochrome هو إضافة Chrome تم تطويرها بواسطة Erich Boschert، والميزة الرئيسية لها هي "Login through Duo Mobile in your browser.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Duochrome
قم بتنزيل ملفات الامتداد Duochrome بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
An alternative to the Duo Mobile app. Duochrome can log you in with just a click. # FAQ Q: How does it work? A: Duochrome approves logins by simply clicking on the extension. It does not bypass Duo Mobile, it works just like the phone app. Q: How do I set it up? A: Just like your phone, you'll need to register it to your organization's Duo Mobile account. Duochrome provides instructions when installed. Q: Does it work for all organizations? A: Yes. Q: Can I copy Duochrome to other computers? A: Yes. In settings, press the export button to get your login data. You can import this data on another extension. Q: Is this secure? A: Yes. Extensions are protected by the modern security of your browser. For security details, visit the GitHub page. Q: How do I uninstall it? A: Right click Duochrome and select remove from Chrome/Edge. You'll need to revisit your organization's Duo Mobile devices page to remove it as a login device.
معلومات أساسية عن التمديد
الاسم | Duochrome |
ID | bnfooenhhgcnhdkdjelgmmkpaemlnoek |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/duochrome/bnfooenhhgcnhdkdjelgmmkpaemlnoek |
الوصف | Login through Duo Mobile in your browser. |
حجم الملف | 3.2 MB |
عدد التثبيتات | 3,235 |
النسخة الحالية | 1.3.9 |
آخر تحديث | 2023-12-17 |
تاريخ النشر | 2022-10-04 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Erich Boschert |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/FreshSupaSulley/Duochrome |
عنوان صفحة المساعدة | https://github.com/FreshSupaSulley/Duochrome |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Duochrome", "description": "Login through Duo Mobile in your browser.", "version": "1.3.9", "manifest_version": 3, "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.duosecurity.com\/*" ], "background": { "service_worker": "worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.duosecurity.com\/*" ], "js": [ "content.js" ] } ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } }, "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } } |