AWS Console Labels

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

O que é AWS Console Labels?

AWS Console Labels é uma extensão do Chrome desenvolvida por benjamin.wagner93, e sua principal característica é "Displays AWS Account Labels in the AWS Console header (works with AWS SSO).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS Console Labels

Baixe arquivos de extensão AWS Console Labels no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome AWS Console Labels AWS Console Labels
ID fngeemjpecbjfhaimhefmlggmjehlpmi
URL Oficial https://chromewebstore.google.com/detail/aws-console-labels/fngeemjpecbjfhaimhefmlggmjehlpmi
Descrição Displays AWS Account Labels in the AWS Console header (works with AWS SSO).
Tamanho do Arquivo 302 KB
Contagem de Instalações 49
Versão Atual 1.0.5
Última Atualização 2022-02-02
Data de Publicação 2020-10-24
Classificação 3.00/5 Total de 2 Avaliações
Desenvolvedor benjamin.wagner93
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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
}