AWS Show MFA
Make the MFA window show on AWS signin
Τι είναι το AWS Show MFA;
Το AWS Show MFA είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον luke.eisenbraun, και η κύρια λειτουργία του είναι "Make the MFA window show on AWS signin".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης AWS Show MFA
Λήψη αρχείων επέκτασης AWS Show MFA σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
If you or your company uses an MFA token for AWS this will make signing in slightly quicker. Instead of clicking the check-box to show the MFA field the field will now automatically show as well as remove the check-box for easy tabbing. If you choose to show the browser action (icon), you can set your signin url in the options and it will take you there. If you are signed into chrome, the "signin" url will sync across devices.
Βασικές Πληροφορίες Επέκτασης
Όνομα | AWS Show MFA |
ID | kofcffedmdmnbempngiopofnogaooeko |
Επίσημο URL | https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko |
Περιγραφή | Make the MFA window show on AWS signin |
Μέγεθος Αρχείου | 13.26 KB |
Αριθμός Εγκαταστάσεων | 145 |
Τρέχουσα Έκδοση | 1.2 |
Τελευταία Ενημέρωση | 2015-02-23 |
Ημερομηνία Δημοσίευσης | 2015-02-23 |
Αξιολόγηση | 2.33/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | luke.eisenbraun |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Luke Eisenbraun", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon-48.png" }, "content_scripts": [ { "js": [ "js\/mfashower.js" ], "matches": [ "https:\/\/signin.aws.amazon.com\/*" ] } ], "description": "Make the MFA window show on AWS signin", "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "manifest_version": 2, "name": "AWS Show MFA", "options_page": "options.html", "permissions": [ "storage" ], "version": "1.2" } |