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)」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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" ] } ] } |