AWS Navbar Region Color

Change AWS's navbar color depending on the region

AWS Navbar Region Colorคืออะไร?

AWS Navbar Region Color เป็นส่วนขยายของ Chrome ที่พัฒนาโดย corollari และคุณลักษณะหลักของมันคือ "Change AWS's navbar color depending on the region"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}