Extension for AWS SSO

This extension is for AWS Single Sign-On (AWS SSO).

O que é Extension for AWS SSO?

Extension for AWS SSO é uma extensão do Chrome desenvolvida por yaggytter, e sua principal característica é "This extension is for AWS Single Sign-On (AWS SSO).".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Extension for AWS SSO

Baixe arquivos de extensão Extension for AWS SSO 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

                        This extension is for AWS IAM Identity Center (The old name is AWS SSO). As for now, this extension is providing only following functions.
You will see what am I using Account Name and Permission Set for current console at AWS console's header, AWS console header's color will almost be red if account name has 'Production' in it, and to bring favorite accounts to the top on the SSO login page. (You can customize header colors using regular expressions for account names on the extension option page. Favorites too.)

Source code is here
https://github.com/yaggytter/chrome-extension-awssso                    

Informações Básicas da Extensão

Nome Extension for AWS SSO Extension for AWS SSO
ID ejjegcnihofdahmbbhekhkcnpflljeej
URL Oficial https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej
Descrição This extension is for AWS Single Sign-On (AWS SSO).
Tamanho do Arquivo 266 KB
Contagem de Instalações 1,894
Versão Atual 1.3.3
Última Atualização 2023-07-29
Data de Publicação 2021-06-13
Classificação 4.80/5 Total de 5 Avaliações
Desenvolvedor yaggytter
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/yaggytter/chrome-extension-awssso
Idiomas Suportados en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.3.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.awsapps.com\/start#\/",
                "https:\/\/*.awsapps.com\/start\/*",
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/health.aws.amazon.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/fav.png"
            ],
            "matches": [
                "https:\/\/*.awsapps.com\/*",
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/health.aws.amazon.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}