AWS Console Labels

Displays AWS Account Labels in the AWS Console header (works with AWS SSO).

Hvad er AWS Console Labels?

AWS Console Labels er en Chrome-udvidelse udviklet af benjamin.wagner93, og dens hovedfunktion er "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".

Udvidelsesskærmbilleder

screenshot

Download AWS Console Labels-udvidelses-CRX-fil

Download AWS Console Labels-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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"
}                    

Grundlæggende oplysninger om udvidelsen

Navn AWS Console Labels AWS Console Labels
ID fngeemjpecbjfhaimhefmlggmjehlpmi
Officiel URL https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi
Beskrivelse Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Filstørrelse 302 KB
Antal Installationer 49
Nuværende Version 1.0.5
Senest Opdateret 2022-02-02
Udgivelsesdato 2020-10-24
Bedømmelse 3.00/5 Samlet 2 Bedømmelser
Udvikler benjamin.wagner93
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}