AWS Colorful Navbar
Change navbar color and flag according to AWS region
What is AWS Colorful Navbar?
AWS Colorful Navbar is a Chrome extension developed by nalbam, and its main feature is "Change navbar color and flag according to AWS region".
Extension Screenshots
Download AWS Colorful Navbar Extension CRX File
Download AWS Colorful Navbar extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
Official URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Description | Change navbar color and flag according to AWS region |
File Size | 1.77 MB |
Installation Count | 248 |
Current Version | 1.7.1 |
Last Updated | 2022-11-16 |
Publish Date | 2022-05-24 |
Rating | 5.00/5 Total 1 Ratings |
Developer | nalbam |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nalbam/aws-navbar-extension |
Privacy Policy Page URL | https://nalbam.github.io/privacy |
Supported Languages | 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\/*" ] } ] } |