AWS Colorful Navbar
Change navbar color and flag according to AWS region
Hvad er AWS Colorful Navbar?
AWS Colorful Navbar er en Chrome-udvidelse udviklet af nalbam, og dens hovedfunktion er "Change navbar color and flag according to AWS region".
Udvidelsesskærmbilleder
Download AWS Colorful Navbar-udvidelses-CRX-fil
Download AWS Colorful Navbar-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
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
Grundlæggende oplysninger om udvidelsen
Navn | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
Officiel URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Beskrivelse | Change navbar color and flag according to AWS region |
Filstørrelse | 1.77 MB |
Antal Installationer | 248 |
Nuværende Version | 1.7.1 |
Senest Opdateret | 2022-11-16 |
Udgivelsesdato | 2022-05-24 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | nalbam |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/nalbam/aws-navbar-extension |
URL til Fortrolighedspolitik Side | https://nalbam.github.io/privacy |
Understøttede Sprog | 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\/*" ] } ] } |