AWS Show MFA

Make the MFA window show on AWS signin

What is AWS Show MFA?

AWS Show MFA is a Chrome extension developed by luke.eisenbraun, and its main feature is "Make the MFA window show on AWS signin".

Extension Screenshots

screenshot

Download AWS Show MFA Extension CRX File

Download AWS Show MFA extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
Official URL https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Description Make the MFA window show on AWS signin
File Size 13.26 KB
Installation Count 145
Current Version 1.2
Last Updated 2015-02-23
Publish Date 2015-02-23
Rating 2.33/5 Total 3 Ratings
Developer luke.eisenbraun
Payment Type free
Supported Languages 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"
}