AWS Colorful Navbar
Change navbar color and flag according to AWS region
Qu'est-ce que AWS Colorful Navbar ?
AWS Colorful Navbar est une extension Chrome développée par nalbam, et sa fonction principale est "Change navbar color and flag according to AWS region".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS Colorful Navbar
Téléchargez les fichiers d'extension AWS Colorful Navbar au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
URL Officiel | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Description | Change navbar color and flag according to AWS region |
Taille du Fichier | 1.77 MB |
Nombre d'Installations | 248 |
Version Actuelle | 1.7.1 |
Dernière Mise à Jour | 2022-11-16 |
Date de Publication | 2022-05-24 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | nalbam |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/nalbam/aws-navbar-extension |
URL de la Page de Politique de Confidentialité | https://nalbam.github.io/privacy |
Langues Prises en Charge | 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\/*" ] } ] } |