AWS Colorful Navbar

Change navbar color and flag according to AWS region

Co je AWS Colorful Navbar?

AWS Colorful Navbar je rozšíření Chrome vyvinuté nalbam, a jeho hlavní funkcí je „Change navbar color and flag according to AWS region“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření AWS Colorful Navbar

Stáhněte si soubory rozšíření AWS Colorful Navbar ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název AWS Colorful Navbar AWS Colorful Navbar
ID kgifmgnlchjjippdpkblbdlfidcpceme
Oficiální URL https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme
Popis Change navbar color and flag according to AWS region
Velikost souboru 1.77 MB
Počet instalací 248
Aktuální Verze 1.7.1
Poslední Aktualizace 2022-11-16
Datum Vydání 2022-05-24
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář nalbam
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/nalbam/aws-navbar-extension
URL Stránky Zásad Ochrany Soukromí https://nalbam.github.io/privacy
Podporované Jazyky 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\/*"
            ]
        }
    ]
}