AWS Console Labels

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

Что такое AWS Console Labels?

AWS Console Labels - это расширение Chrome, разработанное benjamin.wagner93, и его основная функция - "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения AWS Console Labels

Скачайте файлы расширений AWS Console Labels в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название AWS Console Labels AWS Console Labels
ID fngeemjpecbjfhaimhefmlggmjehlpmi
Официальный URL https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi
Описание Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Размер файла 302 KB
Количество установок 49
Текущая Версия 1.0.5
Последнее Обновление 2022-02-02
Дата публикации 2020-10-24
Рейтинг 3.00/5 Всего 2 оценок
Разработчик benjamin.wagner93
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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
}