AWS Colorful Navbar
Change navbar color and flag according to AWS region
Что такое AWS Colorful Navbar?
AWS Colorful Navbar - это расширение Chrome, разработанное nalbam, и его основная функция - "Change navbar color and flag according to AWS region".
Снимки экрана расширения
Скачать файл CRX расширения AWS Colorful Navbar
Скачайте файлы расширений AWS Colorful Navbar в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
Официальный URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Описание | Change navbar color and flag according to AWS region |
Размер файла | 1.77 MB |
Количество установок | 248 |
Текущая Версия | 1.7.1 |
Последнее Обновление | 2022-11-16 |
Дата публикации | 2022-05-24 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | nalbam |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/nalbam/aws-navbar-extension |
URL страницы политики конфиденциальности | https://nalbam.github.io/privacy |
Поддерживаемые языки | 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\/*" ] } ] } |