AWS Region Color Highlights

In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.

O que é AWS Region Color Highlights?

AWS Region Color Highlights é uma extensão do Chrome desenvolvida por jaimebarriga.com, e sua principal característica é "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS Region Color Highlights

Baixe arquivos de extensão AWS Region Color Highlights 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

                        In the AWS Console's top right nav bar, the Region text will now be uniquely colored (based on the flag of that location) so you'll never lose track of what Region you are in!

If you'd like to look at the code, it all lives here: https://github.com/JB4GDI/awsazcolorchromeextension

And if this extension has prevented you from making a really expensive mistake, or it just made your life easier, the tip jar can be found here: https://www.paypal.me/JB4GDI

Tremendous thanks to Krakaw for making everything more efficient (no more jquery) and adding colored flags to the drop down!

There's also a favicon update pack I put together if you liked this extension, and hate that AWS uses the same favicons everywhere: https://chrome.google.com/webstore/detail/aws-favicon-update/ohloajnmmkniehhbmjakbejnomonmijc                    

Informações Básicas da Extensão

Nome AWS Region Color Highlights AWS Region Color Highlights
ID kdjchigefmkankimfkgolpfincgbffkg
URL Oficial https://chromewebstore.google.com/detail/aws-region-color-highligh/kdjchigefmkankimfkgolpfincgbffkg
Descrição In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.
Tamanho do Arquivo 6.46 KB
Contagem de Instalações 272
Versão Atual 1.04
Última Atualização 2019-06-07
Data de Publicação 2019-06-06
Classificação 4.50/5 Total de 4 Avaliações
Desenvolvedor jaimebarriga.com
Tipo de Pagamento free
Site da Extensão http://jaimebarriga.com/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AWS Region Color Highlights",
    "description": "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.",
    "version": "1.04",
    "author": "Jaime Barriga",
    "icons": {
        "16": "colorcube16.png",
        "48": "colorcube48.png",
        "128": "colorcube128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aws.amazon.com\/*",
                "https:\/\/*.amazonaws-us-gov.com\/*"
            ],
            "js": [
                "colorchanger.js"
            ],
            "run_at": "document_end"
        }
    ]
}