AWS Colorful Navbar

Change navbar color and flag according to AWS region

Cos'è AWS Colorful Navbar?

AWS Colorful Navbar è un'estensione di Chrome sviluppata da nalbam, e la sua funzione principale è "Change navbar color and flag according to AWS region".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione AWS Colorful Navbar

Scarica i file di estensione AWS Colorful Navbar 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

                        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                    

Informazioni di Base sull'Estensione

Nome AWS Colorful Navbar AWS Colorful Navbar
ID kgifmgnlchjjippdpkblbdlfidcpceme
URL Ufficiale https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme
Descrizione Change navbar color and flag according to AWS region
Dimensione del File 1.77 MB
Conteggio Installazioni 248
Versione Corrente 1.7.1
Ultimo Aggiornamento 2022-11-16
Data di Pubblicazione 2022-05-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore nalbam
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/nalbam/aws-navbar-extension
URL della Pagina della Politica sulla Privacy https://nalbam.github.io/privacy
Lingue Supportate 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\/*"
            ]
        }
    ]
}