AWS SSO Colourise

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

AWS SSO Colourise क्या है?

AWS SSO Colourise Scott Sinclair द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change the AWS navbar colour based on account (and a few other little niceties)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AWS SSO Colourise एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम AWS SSO Colourise AWS SSO Colourise
ID niehkegjpcojffbkkanieombbpibahjf
आधिकारिक URL https://chromewebstore.google.com/detail/aws-sso-colourise/niehkegjpcojffbkkanieombbpibahjf
विवरण Change the AWS navbar colour based on account (and a few other little niceties)
फ़ाइल का आकार 14.16 KB
स्थापना संख्या 25
वर्तमान संस्करण 1.3.0
अंतिम अपडेट 2023-05-27
प्रकाशन तिथि 2022-09-15
रेटिंग 5.00/5 कुल 2 रेटिंग्स
डेवलपर Scott Sinclair
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/pwae/aws-sso-colourise
सहायता पृष्ठ URL https://github.com/pwae/aws-sso-colourise/issues
समर्थित भाषाएँ 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"
            ]
        }
    ]
}