AWS Colorful Navbar

Change navbar color and flag according to AWS region

AWS Colorful Navbarคืออะไร?

AWS Colorful Navbar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย nalbam และคุณลักษณะหลักของมันคือ "Change navbar color and flag according to AWS region"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Colorful Navbar

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล byforce@gmail.com
ประเภทการชำระเงิน 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\/*"
            ]
        }
    ]
}