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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة AWS Region Color Highlights

قم بتنزيل ملفات الامتداد AWS Region Color Highlights بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
        }
    ]
}