AWS Show MFA

Make the MFA window show on AWS signin

O que é AWS Show MFA?

AWS Show MFA é uma extensão do Chrome desenvolvida por luke.eisenbraun, e sua principal característica é "Make the MFA window show on AWS signin".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS Show MFA

Baixe arquivos de extensão AWS Show MFA no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AWS Show MFA AWS Show MFA
ID kofcffedmdmnbempngiopofnogaooeko
URL Oficial https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko
Descrição Make the MFA window show on AWS signin
Tamanho do Arquivo 13.26 KB
Contagem de Instalações 145
Versão Atual 1.2
Última Atualização 2015-02-23
Data de Publicação 2015-02-23
Classificação 2.33/5 Total de 3 Avaliações
Desenvolvedor luke.eisenbraun
Tipo de Pagamento free
Idiomas Suportados 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"
}