AWS Show MFA

Make the MFA window show on AWS signin

Co to jest AWS Show MFA?

AWS Show MFA to rozszerzenie Chrome opracowane przez luke.eisenbraun, a jego główną funkcją jest „Make the MFA window show on AWS signin”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AWS Show MFA

Pobierz pliki rozszerzeń AWS Show MFA w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
Oficjalny URL https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Opis Make the MFA window show on AWS signin
Rozmiar pliku 13.26 KB
Liczba instalacji 145
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2015-02-23
Data Publikacji 2015-02-23
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper luke.eisenbraun
Typ Płatności free
Obsługiwane Języki 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"
}