AWS Navbar Region Color

Change AWS's navbar color depending on the region

AWS Navbar Region Colorとは何ですか?

AWS Navbar Region Colorはcorollariによって開発されたChromeの拡張機能で、その主な機能は「Change AWS's navbar color depending on the region」です。

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

screenshot

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

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

拡張機能の使用方法

                        See https://github.com/corollari/aws-color-region-navbar-extension                    

拡張機能の基本情報

名前 AWS Navbar Region Color AWS Navbar Region Color
ID ofhcnghdbkacblncbjjpcdfmbknhckkb
公式URL https://chromewebstore.google.com/detail/aws-navbar-region-color/ofhcnghdbkacblncbjjpcdfmbknhckkb
説明 Change AWS's navbar color depending on the region
ファイルサイズ 8.11 KB
インストール数 88
現在のバージョン 1.0.0
最終更新日 2020-11-04
公開日 2020-11-04
開発者 corollari
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/corollari/aws-color-region-navbar-extension
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS Navbar Region Color",
    "version": "1.0.0",
    "description": "Change AWS's navbar color depending on the region",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Options",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.console.aws.amazon.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}