AWS Account Identifier

Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.

AWS Account Identifier란 무엇입니까?

AWS Account Identifier은(는) richard.ruben에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

AWS Account Identifier 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Adds a header to the Navigation Bar of AWS with a description and color based on the account you are connected to. In a multi account environment this is a very useful tool to help you to quickly identify the current account. 

A new feature has been added so you can import the accounts from the AWS SSO start page. This makes maintaining the accounts in this extension a lot easier.

As from version 1.1.0 we stopped using an extra row on the navbar for the description as certain console feature were designed with a fixed position what would make it impossible to access certain functionalities of the AWS Console. Instead, we moved the description to the lower bar where enough space is available to add the description.

version 1.2.1: Fix Account detection and improve style.                    

확장 프로그램 기본 정보

이름 AWS Account Identifier AWS Account Identifier
ID hcadohnnmcnidhldgjhbpagaoicjboap
공식 URL https://chromewebstore.google.com/detail/aws-account-identifier/hcadohnnmcnidhldgjhbpagaoicjboap
설명 Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.
파일 크기 2.26 MB
설치 횟수 28
현재 버전 1.2.1
최근 업데이트 2022-12-10
출시 날짜 2022-02-17
평점 5.00/5 총 2 개의 평점
개발자 richard.ruben
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS Account Identifier",
    "version": "1.2.1",
    "description": "Adds a description with a specific color to the AWS's navigation bar depending on the account you are connected to.",
    "manifest_version": 3,
    "action": {
        "default_title": "Options",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.console.aws.amazon.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "css\/main.css"
            ]
        },
        {
            "matches": [
                "*:\/\/*.awsapps.com\/start#\/",
                "*:\/\/*.awsapps.com\/start\/*"
            ],
            "js": [
                "main-sso.js"
            ]
        }
    ]
}