AWS Peacock Management Console

Browser Extension to change color of AWS Management Console, by Account ID

AWS Peacock Management Consoleคืออะไร?

AWS Peacock Management Console เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hiroga และคุณลักษณะหลักของมันคือ "Browser Extension to change color of AWS Management Console, by Account ID"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Peacock Management Console

ดาวน์โหลดไฟล์ส่วนขยาย AWS Peacock Management Console ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        AWS Peacock Management Console store configuration which maps environment(Account ID and Region) to style(color). In AWS Management Console, it modify HTML tags to change color and show account alias. If logged in by AWS SSO, show account name than account name.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ AWS Peacock Management Console AWS Peacock Management Console
ID bknjjajglapfhbdcfgmhgkgfomkkaidj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj
คำอธิบาย Browser Extension to change color of AWS Management Console, by Account ID
ขนาดไฟล์ 33.99 KB
จำนวนการติดตั้ง 2,047
เวอร์ชันปัจจุบัน 2.9
อัปเดตครั้งล่าสุด 2024-01-03
วันที่เผยแพร่ 2021-10-16
คะแนน 4.50/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา hiroga
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/xhiroga/aws-peacock-management-console
URL หน้าช่วยเหลือ https://github.com/xhiroga/aws-peacock-management-console/issues
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "AWS Peacock Management Console",
    "description": "Browser Extension to change color of AWS Management Console, by Account ID",
    "version": "2.9",
    "icons": {
        "128": "icons\/128.png"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/phd.aws.amazon.com\/*",
                "https:\/\/*.console.amazonaws-us-gov.com\/*",
                "https:\/\/*.console.amazonaws.cn\/*"
            ],
            "run_at": "document_end"
        },
        {
            "js": [
                "scraping.js"
            ],
            "matches": [
                "https:\/\/*.awsapps.com\/start*"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "{5b1686a2-506f-4ca5-ab39-91cd328502aa}"
        }
    }
}