AWS Console Labels

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

Co to jest AWS Console Labels?

AWS Console Labels to rozszerzenie Chrome opracowane przez benjamin.wagner93, a jego główną funkcją jest „Displays AWS Account Labels in the AWS Console header (works with AWS SSO).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AWS Console Labels

Pobierz pliki rozszerzeń AWS Console Labels w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa AWS Console Labels AWS Console Labels
ID fngeemjpecbjfhaimhefmlggmjehlpmi
Oficjalny URL https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi
Opis Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Rozmiar pliku 302 KB
Liczba instalacji 49
Aktualna Wersja 1.0.5
Ostatnia Aktualizacja 2022-02-02
Data Publikacji 2020-10-24
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper benjamin.wagner93
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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
}