AWS Region Color Highlights

In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.

什麼是AWS Region Color Highlights?

AWS Region Color Highlights是由jaimebarriga.com開發的Chrome擴展程式,該擴展的主要功能是“In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.”。

擴展截圖

screenshot

下載AWS Region Color Highlights擴展crx文件

下載AWS Region Color Highlights擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        In the AWS Console's top right nav bar, the Region text will now be uniquely colored (based on the flag of that location) so you'll never lose track of what Region you are in!

If you'd like to look at the code, it all lives here: https://github.com/JB4GDI/awsazcolorchromeextension

And if this extension has prevented you from making a really expensive mistake, or it just made your life easier, the tip jar can be found here: https://www.paypal.me/JB4GDI

Tremendous thanks to Krakaw for making everything more efficient (no more jquery) and adding colored flags to the drop down!

There's also a favicon update pack I put together if you liked this extension, and hate that AWS uses the same favicons everywhere: https://chrome.google.com/webstore/detail/aws-favicon-update/ohloajnmmkniehhbmjakbejnomonmijc                    

擴展基本資訊

名稱 AWS Region Color Highlights AWS Region Color Highlights
ID kdjchigefmkankimfkgolpfincgbffkg
官方網址 https://chromewebstore.google.com/detail/aws-region-color-highligh/kdjchigefmkankimfkgolpfincgbffkg
簡介 In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.
檔案大小 6.46 KB
安裝次數 272
目前版本 1.04
更新時間 2019-06-07
上架時間 2019-06-06
評分 4.50/5 共 4 次評分
開發者 jaimebarriga.com
付費類型 free
擴展官網 http://jaimebarriga.com/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AWS Region Color Highlights",
    "description": "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.",
    "version": "1.04",
    "author": "Jaime Barriga",
    "icons": {
        "16": "colorcube16.png",
        "48": "colorcube48.png",
        "128": "colorcube128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.aws.amazon.com\/*",
                "https:\/\/*.amazonaws-us-gov.com\/*"
            ],
            "js": [
                "colorchanger.js"
            ],
            "run_at": "document_end"
        }
    ]
}