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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย richard.ruben และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Account Identifier

ดาวน์โหลดไฟล์ส่วนขยาย AWS Account Identifier ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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