AWS Colorful Navbar

Change navbar color and flag according to AWS region

Was ist AWS Colorful Navbar?

AWS Colorful Navbar ist eine Chrome-Erweiterung, die von nalbam entwickelt wurde, und ihr Hauptmerkmal ist "Change navbar color and flag according to AWS region".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

AWS Colorful Navbar-Erweiterungs-CRX-Datei herunterladen

Laden Sie AWS Colorful Navbar-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        In the AWS console, you can select a region by country.
However, the expression according to the region is not clear, so it is sometimes confusing which region is currently selected.

This extension will change the navigation background at the top to the regional color of the selected region. And the flag is displayed in front of the region name.

see: https://github.com/nalbam/aws-navbar-extension                    

Grundlegende Informationen zur Erweiterung

Name AWS Colorful Navbar AWS Colorful Navbar
ID kgifmgnlchjjippdpkblbdlfidcpceme
Offizielle URL https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme
Beschreibung Change navbar color and flag according to AWS region
Dateigröße 1.77 MB
Installationsanzahl 248
Aktuelle Version 1.7.1
Letztes Update 2022-11-16
Veröffentlichungsdatum 2022-05-24
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler nalbam
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/nalbam/aws-navbar-extension
URL der Datenschutzrichtlinien-Seite https://nalbam.github.io/privacy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS Colorful Navbar",
    "description": "Change navbar color and flag according to AWS region",
    "version": "1.7.1",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        "*:\/\/*.console.aws.amazon.com\/*"
    ],
    "action": {
        "default_icon": {
            "128": "icon.png"
        },
        "default_popup": "popup.html",
        "default_title": "AWS Colorful Navbar"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "flags\/*.png",
                "svcs\/*.svg",
                "svcs\/*.ico"
            ],
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ]
        }
    ]
}