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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the AWS navbar colour based on account (and a few other little niceties)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

AWS SSO Colourise 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
            ]
        }
    ]
}