AWS Peacock Management Console

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

Apa itu AWS Peacock Management Console?

AWS Peacock Management Console adalah ekstensi Chrome yang dikembangkan oleh hiroga, dan fitur utamanya adalah "Browser Extension to change color of AWS Management Console, by Account ID".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi AWS Peacock Management Console

Unduh file ekstensi AWS Peacock Management Console dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama AWS Peacock Management Console AWS Peacock Management Console
ID bknjjajglapfhbdcfgmhgkgfomkkaidj
URL Resmi https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj
Deskripsi Browser Extension to change color of AWS Management Console, by Account ID
Ukuran File 33.99 KB
Jumlah Instalasi 2,047
Versi Saat Ini 2.9
Terakhir Diperbarui 2024-01-03
Tanggal Publikasi 2021-10-16
Penilaian 4.50/5 Total 4 Penilaian
Pengembang hiroga
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/xhiroga/aws-peacock-management-console
URL Halaman Bantuan https://github.com/xhiroga/aws-peacock-management-console/issues
Bahasa yang Didukung 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}"
        }
    }
}