AWS Peacock Management Console

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

Hvad er AWS Peacock Management Console?

AWS Peacock Management Console er en Chrome-udvidelse udviklet af hiroga, og dens hovedfunktion er "Browser Extension to change color of AWS Management Console, by Account ID".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download AWS Peacock Management Console-udvidelses-CRX-fil

Download AWS Peacock Management Console-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn AWS Peacock Management Console AWS Peacock Management Console
ID bknjjajglapfhbdcfgmhgkgfomkkaidj
Officiel URL https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj
Beskrivelse Browser Extension to change color of AWS Management Console, by Account ID
Filstørrelse 33.99 KB
Antal Installationer 2,047
Nuværende Version 2.9
Senest Opdateret 2024-01-03
Udgivelsesdato 2021-10-16
Bedømmelse 4.50/5 Samlet 4 Bedømmelser
Udvikler hiroga
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/xhiroga/aws-peacock-management-console
Hjælpeside-URL https://github.com/xhiroga/aws-peacock-management-console/issues
Understøttede Sprog 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}"
        }
    }
}