AWS Show MFA
Make the MFA window show on AWS signin
Cos'è AWS Show MFA?
AWS Show MFA è un'estensione di Chrome sviluppata da luke.eisenbraun, e la sua funzione principale è "Make the MFA window show on AWS signin".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AWS Show MFA
Scarica i file di estensione AWS Show MFA in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | AWS Show MFA |
ID | kofcffedmdmnbempngiopofnogaooeko |
URL Ufficiale | https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko |
Descrizione | Make the MFA window show on AWS signin |
Dimensione del File | 13.26 KB |
Conteggio Installazioni | 145 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2015-02-23 |
Data di Pubblicazione | 2015-02-23 |
Valutazione | 2.33/5 Totale 3 Valutazioni |
Sviluppatore | luke.eisenbraun |
Tipo di Pagamento | free |
Lingue Supportate | 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" } |