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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "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

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में AWS Region Color Highlights एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
        }
    ]
}