AWS Show MFA

Make the MFA window show on AWS signin

Was ist AWS Show MFA?

AWS Show MFA ist eine Chrome-Erweiterung, die von luke.eisenbraun entwickelt wurde, und ihr Hauptmerkmal ist "Make the MFA window show on AWS signin".

Erweiterungsscreenshots

screenshot

AWS Show MFA-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS Show MFA-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
Offizielle URL https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Beschreibung Make the MFA window show on AWS signin
Dateigröße 13.26 KB
Installationsanzahl 145
Aktuelle Version 1.2
Letztes Update 2015-02-23
Veröffentlichungsdatum 2015-02-23
Bewertung 2.33/5 Insgesamt 3 Bewertungen
Entwickler luke.eisenbraun
Zahlungsart free
Unterstützte Sprachen 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"
}