AWS Console Labels

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

什麼是AWS Console Labels?

AWS Console Labels是由benjamin.wagner93開發的Chrome擴展程式,該擴展的主要功能是“Displays AWS Account Labels in the AWS Console header (works with AWS SSO).”。

擴展截圖

screenshot

下載AWS Console Labels擴展crx文件

下載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
官方網址 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
}