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文件

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