AWS Show MFA

Make the MFA window show on AWS signin

Hvad er AWS Show MFA?

AWS Show MFA er en Chrome-udvidelse udviklet af luke.eisenbraun, og dens hovedfunktion er "Make the MFA window show on AWS signin".

Udvidelsesskærmbilleder

screenshot

Download AWS Show MFA-udvidelses-CRX-fil

Download AWS Show MFA-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
Officiel URL https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Beskrivelse Make the MFA window show on AWS signin
Filstørrelse 13.26 KB
Antal Installationer 145
Nuværende Version 1.2
Senest Opdateret 2015-02-23
Udgivelsesdato 2015-02-23
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler luke.eisenbraun
Betalingsmetode free
Understøttede Sprog 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"
}