AWS Colorful Navbar
Change navbar color and flag according to AWS region
Wat is AWS Colorful Navbar?
AWS Colorful Navbar is een Chrome-extensie ontwikkeld door nalbam, en de belangrijkste functie is "Change navbar color and flag according to AWS region".
Extensie Screenshots
Download het CRX-bestand van de extensie AWS Colorful Navbar
Download AWS Colorful Navbar-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
Officiële URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Beschrijving | Change navbar color and flag according to AWS region |
Bestandsgrootte | 1.77 MB |
Aantal Installaties | 248 |
Huidige Versie | 1.7.1 |
Laatst Bijgewerkt | 2022-11-16 |
Publicatiedatum | 2022-05-24 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | nalbam |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/nalbam/aws-navbar-extension |
URL van de Privacybeleid Pagina | https://nalbam.github.io/privacy |
Ondersteunde Talen | 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\/*" ] } ] } |