AWS Colorful Navbar

Change navbar color and flag according to AWS region

AWS Colorful Navbarとは何ですか?

AWS Colorful Navbarはnalbamによって開発されたChromeの拡張機能で、その主な機能は「Change navbar color and flag according to AWS region」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

AWS Colorful Navbar拡張機能のCRXファイルをダウンロード

AWS Colorful Navbar拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        In the AWS console, you can select a region by country.
However, the expression according to the region is not clear, so it is sometimes confusing which region is currently selected.

This extension will change the navigation background at the top to the regional color of the selected region. And the flag is displayed in front of the region name.

see: https://github.com/nalbam/aws-navbar-extension                    

拡張機能の基本情報

名前 AWS Colorful Navbar AWS Colorful Navbar
ID kgifmgnlchjjippdpkblbdlfidcpceme
公式URL https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme
説明 Change navbar color and flag according to AWS region
ファイルサイズ 1.77 MB
インストール数 248
現在のバージョン 1.7.1
最終更新日 2022-11-16
公開日 2022-05-24
評価 5.00/5 合計 1 レビュー
開発者 nalbam
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/nalbam/aws-navbar-extension
プライバシーポリシーページのURL https://nalbam.github.io/privacy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS Colorful Navbar",
    "description": "Change navbar color and flag according to AWS region",
    "version": "1.7.1",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.console.aws.amazon.com\/*"
    ],
    "action": {
        "default_icon": {
            "128": "icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "AWS Colorful Navbar"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "flags\/*.png",
                "svcs\/*.svg",
                "svcs\/*.ico"
            ],
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ]
        }
    ]
}