AWS Show MFA
Make the MFA window show on AWS signin
¿Qué es AWS Show MFA?
AWS Show MFA es una extensión de Chrome desarrollada por luke.eisenbraun, y su función principal es "Make the MFA window show on AWS signin".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AWS Show MFA
Descarga archivos de extensión AWS Show MFA en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | AWS Show MFA |
ID | kofcffedmdmnbempngiopofnogaooeko |
URL Oficial | https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko |
Descripción | Make the MFA window show on AWS signin |
Tamaño del Archivo | 13.26 KB |
Cantidad de Instalaciones | 145 |
Versión Actual | 1.2 |
Última Actualización | 2015-02-23 |
Fecha de Publicación | 2015-02-23 |
Calificación | 2.33/5 Total de 3 Calificaciones |
Desarrollador | luke.eisenbraun |
Tipo de Pago | free |
Idiomas Soportados | 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" } |