AWS SSO Colourise

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

AWS SSO Colouriseคืออะไร?

AWS SSO Colourise เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Scott Sinclair และคุณลักษณะหลักของมันคือ "Change the AWS navbar colour based on account (and a few other little niceties)"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS SSO Colourise

ดาวน์โหลดไฟล์ส่วนขยาย AWS SSO Colourise ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
            ]
        }
    ]
}