AWS Peacock Management Console

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

Cos'è AWS Peacock Management Console?

AWS Peacock Management Console è un'estensione di Chrome sviluppata da hiroga, e la sua funzione principale è "Browser Extension to change color of AWS Management Console, by Account ID".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione AWS Peacock Management Console

Scarica i file di estensione AWS Peacock Management Console in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AWS Peacock Management Console AWS Peacock Management Console
ID bknjjajglapfhbdcfgmhgkgfomkkaidj
URL Ufficiale https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj
Descrizione Browser Extension to change color of AWS Management Console, by Account ID
Dimensione del File 33.99 KB
Conteggio Installazioni 2,047
Versione Corrente 2.9
Ultimo Aggiornamento 2024-01-03
Data di Pubblicazione 2021-10-16
Valutazione 4.50/5 Totale 4 Valutazioni
Sviluppatore hiroga
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/xhiroga/aws-peacock-management-console
URL della Pagina di Aiuto https://github.com/xhiroga/aws-peacock-management-console/issues
Lingue Supportate 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}"
        }
    }
}