AWS Colorful Navbar
Change navbar color and flag according to AWS region
Vad är AWS Colorful Navbar?
AWS Colorful Navbar är en Chrome-tillägg utvecklad av nalbam, och dess huvudfunktion är "Change navbar color and flag according to AWS region".
Tilläggsskärmbilder
Ladda ner AWS Colorful Navbar-förlängningens CRX-fil
Ladda ner AWS Colorful Navbar-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
Officiell webbadress | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Beskrivning | Change navbar color and flag according to AWS region |
Filstorlek | 1.77 MB |
Antal Installationer | 248 |
Aktuell Version | 1.7.1 |
Senast Uppdaterad | 2022-11-16 |
Publiceringsdatum | 2022-05-24 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | nalbam |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/nalbam/aws-navbar-extension |
URL till Sekretesspolicy Sidan | https://nalbam.github.io/privacy |
Stödda Språk | 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\/*" ] } ] } |