AWS Extend Switch Roles
Extend your AWS IAM switching roles. You can set the configuration like aws config format
AWS Extend Switch Rolesとは何ですか?
AWS Extend Switch RolesはTilfin Ltd.によって開発されたChromeの拡張機能で、その主な機能は「Extend your AWS IAM switching roles. You can set the configuration like aws config format」です。
拡張機能のスクリーンショット
AWS Extend Switch Roles拡張機能のCRXファイルをダウンロード
AWS Extend Switch Roles拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Switch role history does not remain only five maximum on the AWS Management Console. This extension gives you show all of switch roles from a browse menu by loading your aws configuration. ## Configuration ### Simple Configuration The simplest configuration is for multiple **target roles** when you always intend to show the whole list. **Target roles** can be expressed with a `role_arn` or with both `aws_account_id` and `role_name`. #### Optional parameters * `color` - The RGB hex value (without the prefix '#') for the color of the header bottom border and around the current profile. * `region` - Changing the region whenever switching the role if this parameter is specified. * `image` - The uri of an image to use on top of any color attribute supplied. The color and image are not mutually exclusive. ``` [profile marketingadmin] role_arn = arn:aws:iam::123456789012:role/marketingadmin color = ffaaee [anotheraccount] aws_account_id = 987654321987 role_name = anotherrole region=ap-northeast-1 ``` ### Complex Configuration More complex configurations involve multiple AWS accounts and/or organizations. - A profile that has only `aws_account_id` (without a `role_name`) is defined as **base account**. - If your account is aliased, you specify `aws_account_alias` in **base account**. - A **target role** is associated with a **base account** by the **target role** specifying a `source_profile`. - As above, **target roles** can be expressed with a `role_arn` or with both `aws_account_id` and `role_name` and can optionally pass the optional parameters. - If `target_role_name` is set in **base account**, the value is provided as the default role name for each **target roles**. ``` [organization1] aws_account_id = your-account-alias [Org1-Account1-Role1] role_arn = arn:aws:iam::123456789012:role/Role1 source_profile = organization1 [Org1-Account1-Role2] aws_account_id = 123456789012 role_name = Role2 source_profile = organization1 [Org1-Account2-Role1] aws_account_id = 210987654321 role_name = Role1 source_profile = organization1 [baseaccount2] aws_account_id = 000000000000 [Base2-Role1] role_arn = arn:aws:iam::234567890123:role/Role1 source_profile = baseaccount2 [AnotherRole] role_name = SomeOtherRole aws_account_id = account-3-alias ``` If you sign-in a base account, target roles of the other base accounts are excluded. For more information, please visit the homepage.
拡張機能の基本情報
名前 | AWS Extend Switch Roles |
ID | jpmkfafbacpgapdghgdpembnojdlgkdl |
公式URL | https://chromewebstore.google.com/detail/aws-extend-switch-roles/jpmkfafbacpgapdghgdpembnojdlgkdl |
説明 | Extend your AWS IAM switching roles. You can set the configuration like aws config format |
ファイルサイズ | 71.86 KB |
インストール数 | 110,782 |
現在のバージョン | 4.0.2 |
最終更新日 | 2023-11-07 |
公開日 | 2020-05-17 |
評価 | 4.92/5 合計 83 レビュー |
開発者 | Tilfin Ltd. |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/tilfinltd/aws-extend-switch-roles |
ヘルプページのURL | https://github.com/tilfinltd/aws-extend-switch-roles |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "4.0.2", "name": "AWS Extend Switch Roles", "description": "Extend your AWS IAM switching roles. You can set the configuration like aws config format", "short_name": "Extend SwitchRole", "permissions": [ "activeTab", "storage" ], "icons": { "48": "icons\/Icon_48x48.png", "128": "icons\/Icon_128x128.png" }, "action": { "default_title": "AWS Extend Switch Roles", "default_icon": "icons\/Icon_38x38.png", "default_popup": "popup.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+Shift+Comma" } } }, "content_scripts": [ { "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/health.aws.amazon.com\/*", "https:\/\/lightsail.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/phd.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*", "https:\/\/health.amazonaws.cn\/*" ], "all_frames": true, "js": [ "js\/content.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "web_accessible_resources": [ { "resources": [ "js\/attach_target.js" ], "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/health.aws.amazon.com\/*", "https:\/\/lightsail.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/phd.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*", "https:\/\/health.amazonaws.cn\/*" ] } ], "manifest_version": 3, "minimum_chrome_version": "88.0", "background": { "service_worker": "js\/background.js", "type": "module" } } |