AWS Console Labels
Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Cos'è AWS Console Labels?
AWS Console Labels è un'estensione di Chrome sviluppata da benjamin.wagner93, e la sua funzione principale è "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AWS Console Labels
Scarica i file di estensione AWS Console Labels in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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" }
Informazioni di Base sull'Estensione
Nome | AWS Console Labels |
ID | fngeemjpecbjfhaimhefmlggmjehlpmi |
URL Ufficiale | https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi |
Descrizione | Displays AWS Account Labels in the AWS Console header (works with AWS SSO). |
Dimensione del File | 302 KB |
Conteggio Installazioni | 49 |
Versione Corrente | 1.0.5 |
Ultimo Aggiornamento | 2022-02-02 |
Data di Pubblicazione | 2020-10-24 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | benjamin.wagner93 |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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 } |