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
公式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
Eメール [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
}