AWS SSO Colourise

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

Was ist AWS SSO Colourise?

AWS SSO Colourise ist eine Chrome-Erweiterung, die von Scott Sinclair entwickelt wurde, und ihr Hauptmerkmal ist "Change the AWS navbar colour based on account (and a few other little niceties)".

Erweiterungsscreenshots

screenshot
screenshot

AWS SSO Colourise-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS SSO Colourise-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name AWS SSO Colourise AWS SSO Colourise
ID niehkegjpcojffbkkanieombbpibahjf
Offizielle URL https://chromewebstore.google.com/detail/aws-sso-colourise/niehkegjpcojffbkkanieombbpibahjf
Beschreibung Change the AWS navbar colour based on account (and a few other little niceties)
Dateigröße 14.16 KB
Installationsanzahl 25
Aktuelle Version 1.3.0
Letztes Update 2023-05-27
Veröffentlichungsdatum 2022-09-15
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Scott Sinclair
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/pwae/aws-sso-colourise
Hilfeseite URL https://github.com/pwae/aws-sso-colourise/issues
Unterstützte Sprachen 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"
            ]
        }
    ]
}