AWS Console Labels
Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
What is AWS Console Labels?
AWS Console Labels is a Chrome extension developed by benjamin.wagner93, and its main feature is "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".
Extension Screenshots
Download AWS Console Labels Extension CRX File
Download AWS Console Labels extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This plugin shows an AWS account name in the header of the AWS console based on a JSON configuration. After installation, please open extension options via the extensions menu and enter a JSON-formatted list of AWS account IDs and labels in the textarea; for example: { "123123123123": "MyPersonalAWSAccount", "456456456456": "CompanyDevAWSAccount", "789789789789": "CompanyProdAWSAccount" }
Extension Basic Information
Name | AWS Console Labels |
ID | fngeemjpecbjfhaimhefmlggmjehlpmi |
Official URL | https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi |
Description | Displays AWS Account Labels in the AWS Console header (works with AWS SSO). |
File Size | 302 KB |
Installation Count | 49 |
Current Version | 1.0.5 |
Last Updated | 2022-02-02 |
Publish Date | 2020-10-24 |
Rating | 3.00/5 Total 2 Ratings |
Developer | benjamin.wagner93 |
[email protected] | |
Payment Type | free |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Console Labels", "version": "1.0.5", "description": "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).", "content_scripts": [ { "css": [ "style.css" ], "js": [ "banner.js" ], "matches": [ "https:\/\/console.aws.amazon.com\/*", "https:\/\/*.console.aws.amazon.com\/*" ], "all_frames": true } ], "icons": { "128": "icon128.png" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "permissions": [ "storage" ], "manifest_version": 2 } |