AutofillDuo
Skip the hassle of Duo
Τι είναι το AutofillDuo;
Το AutofillDuo είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον michaellan202, και η κύρια λειτουργία του είναι "Skip the hassle of Duo".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AutofillDuo
Λήψη αρχείων επέκτασης AutofillDuo σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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!
Βασικές Πληροφορίες Επέκτασης
Όνομα | AutofillDuo |
ID | caojkghbbpbfondngcjabamocpgkjgjn |
Επίσημο URL | https://chromewebstore.google.com/detail/autofillduo/caojkghbbpbfondngcjabamocpgkjgjn |
Περιγραφή | Skip the hassle of Duo |
Μέγεθος Αρχείου | 16.93 KB |
Αριθμός Εγκαταστάσεων | 96 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2022-11-19 |
Ημερομηνία Δημοσίευσης | 2022-09-23 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | michaellan202 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/mizlan/AutofillDuo/issues |
Υποστηριζόμενες Γλώσσες | 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" } } |