AWS Show MFA

Make the MFA window show on AWS signin

Vad är AWS Show MFA?

AWS Show MFA är en Chrome-tillägg utvecklad av luke.eisenbraun, och dess huvudfunktion är "Make the MFA window show on AWS signin".

Tilläggsskärmbilder

screenshot

Ladda ner AWS Show MFA-förlängningens CRX-fil

Ladda ner AWS Show MFA-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
Officiell webbadress https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Beskrivning Make the MFA window show on AWS signin
Filstorlek 13.26 KB
Antal Installationer 145
Aktuell Version 1.2
Senast Uppdaterad 2015-02-23
Publiceringsdatum 2015-02-23
Betyg 2.33/5 Totalt 3 Betyg
Utvecklare luke.eisenbraun
Betalningssätt free
Stödda Språk 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"
}