AWS SSO Colourise

Change the AWS navbar colour based on account (and a few other little niceties)

O que é AWS SSO Colourise?

AWS SSO Colourise é uma extensão do Chrome desenvolvida por Scott Sinclair, e sua principal característica é "Change the AWS navbar colour based on account (and a few other little niceties)".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão AWS SSO Colourise

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

                        Version 1.3.0 - Adds support for AWS GovCloud and AWS China. Fixes some issues experienced with the script.

This extension gives you the ability to customise the AWS Console navigation bar, to indicate what account you are currently signed in as.
In addition, it will make the name of the AWS Region you are using, and the Account Name visible by default on the Navigation bar

Previously when you used "Switch Roles" you could set a colour when changing from one account to another. However, when switching to AWS SSO (or now know as IAM Identity Center), you do not have this ability with the Console.

A Simple dialog lets you configure each account/account alias and the relevant colour you want to have, and this will be auto applied on the console page loading.

 See screenshots for some examples!                    

Informações Básicas da Extensão

Nome AWS SSO Colourise AWS SSO Colourise
ID niehkegjpcojffbkkanieombbpibahjf
URL Oficial https://chromewebstore.google.com/detail/aws-sso-colourise/niehkegjpcojffbkkanieombbpibahjf
Descrição Change the AWS navbar colour based on account (and a few other little niceties)
Tamanho do Arquivo 14.16 KB
Contagem de Instalações 25
Versão Atual 1.3.0
Última Atualização 2023-05-27
Data de Publicação 2022-09-15
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Scott Sinclair
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/pwae/aws-sso-colourise
URL da Página de Ajuda https://github.com/pwae/aws-sso-colourise/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS SSO Colourise",
    "version": "1.3.0",
    "description": "Change the AWS navbar colour based on account (and a few other little niceties)",
    "manifest_version": 3,
    "action": {
        "default_title": "Options",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "clipboardWrite"
    ],
    "host_permissions": [
        "*:\/\/*.console.aws.amazon.com\/*",
        "*:\/\/*.console.amazonaws.cn\/*",
        "*:\/\/*.console.amazonaws-us-gov.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*",
                "*:\/\/*.console.amazonaws.cn\/*",
                "*:\/\/*.console.amazonaws-us-gov.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}