AWS Console Labels
Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Was ist AWS Console Labels?
AWS Console Labels ist eine Chrome-Erweiterung, die von benjamin.wagner93 entwickelt wurde, und ihr Hauptmerkmal ist "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".
Erweiterungsscreenshots
AWS Console Labels-Erweiterungs-CRX-Datei herunterladen
Laden Sie AWS Console Labels-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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" }
Grundlegende Informationen zur Erweiterung
Name | AWS Console Labels |
ID | fngeemjpecbjfhaimhefmlggmjehlpmi |
Offizielle URL | https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi |
Beschreibung | Displays AWS Account Labels in the AWS Console header (works with AWS SSO). |
Dateigröße | 302 KB |
Installationsanzahl | 49 |
Aktuelle Version | 1.0.5 |
Letztes Update | 2022-02-02 |
Veröffentlichungsdatum | 2020-10-24 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | benjamin.wagner93 |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } |