AWS Colorful Navbar
Change navbar color and flag according to AWS region
O que é AWS Colorful Navbar?
AWS Colorful Navbar é uma extensão do Chrome desenvolvida por nalbam, e sua principal característica é "Change navbar color and flag according to AWS region".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão AWS Colorful Navbar
Baixe arquivos de extensão AWS Colorful Navbar no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
URL Oficial | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Descrição | Change navbar color and flag according to AWS region |
Tamanho do Arquivo | 1.77 MB |
Contagem de Instalações | 248 |
Versão Atual | 1.7.1 |
Última Atualização | 2022-11-16 |
Data de Publicação | 2022-05-24 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | nalbam |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/nalbam/aws-navbar-extension |
URL da Página de Política de Privacidade | https://nalbam.github.io/privacy |
Idiomas Suportados | 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\/*" ] } ] } |