AutofillDuo
Skip the hassle of Duo
Was ist AutofillDuo?
AutofillDuo ist eine Chrome-Erweiterung, die von michaellan202 entwickelt wurde, und ihr Hauptmerkmal ist "Skip the hassle of Duo".
Erweiterungsscreenshots
AutofillDuo-Erweiterungs-CRX-Datei herunterladen
Laden Sie AutofillDuo-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
You've got meetings to join, emails to check, and assignments to turn in. Skip Duo and get right to work: no more checking your phone and getting notifications. AutofillDuo supports all prompt styles (don't worry if you don't know what this means), and has a 2-minute setup and fully-automatic usage—lay back and relax! Features: * Future-proofed with Manifest v3 * Compatible with all Duo prompts (Universal/Traditional) * Fully-automatic execution, enabled by default * Quick setup: <5 minutes * Inspired by other browser extensions such as Bye Duo Fixed: * Allow some configurations that were originally disallowed on Traditional mode!
Grundlegende Informationen zur Erweiterung
Name | AutofillDuo |
ID | caojkghbbpbfondngcjabamocpgkjgjn |
Offizielle URL | https://chromewebstore.google.com/detail/autofillduo/caojkghbbpbfondngcjabamocpgkjgjn |
Beschreibung | Skip the hassle of Duo |
Dateigröße | 16.93 KB |
Installationsanzahl | 96 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2022-11-19 |
Veröffentlichungsdatum | 2022-09-23 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | michaellan202 |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/mizlan/AutofillDuo/issues |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AutofillDuo", "version": "1.0.2", "description": "Skip the hassle of Duo", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.duosecurity.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.duosecurity.com\/*\/prompt", "https:\/\/*.duosecurity.com\/*\/prompt?*", "https:\/\/*.duosecurity.com\/*\/auth", "https:\/\/*.duosecurity.com\/*\/auth?*" ], "all_frames": true, "js": [ "lib\/jsOTP.min.js", "content.js" ] } ], "action": { "default_popup": "popup\/activation.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |