Customize AWS Console Header
Change AWS Console Header. background color and text label.
Что такое Customize AWS Console Header?
Customize AWS Console Header - это расширение Chrome, разработанное bunjik, и его основная функция - "Change AWS Console Header. background color and text label.".
Снимки экрана расширения
Скачать файл CRX расширения Customize AWS Console Header
Скачайте файлы расширений Customize AWS Console Header в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
customize aws console header. change header background color and append text label. Multiple combinations of account name and region can be set.
Основная информация о расширении
Название | Customize AWS Console Header |
ID | cjpikjjajakahcpglopbmobcoiibcpcd |
Официальный URL | https://chromewebstore.google.com/detail/customize-aws-console-hea/cjpikjjajakahcpglopbmobcoiibcpcd |
Описание | Change AWS Console Header. background color and text label. |
Размер файла | 266 KB |
Количество установок | 1,573 |
Текущая Версия | 1.0.6 |
Последнее Обновление | 2023-10-28 |
Дата публикации | 2020-06-09 |
Рейтинг | 4.50/5 Всего 6 оценок |
Разработчик | bunjik |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/bunjik/aws-console-customize-extension |
Поддерживаемые языки | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_ext_name__", "description": "__MSG_ext_description__", "version": "1.0.6", "default_locale": "en", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/*.console.aws.amazon.com\/*" ], "js": [ "js\/jquery.min.js", "extension.js" ], "css": [ "css\/extension.css" ] } ], "options_ui": { "browser_style": true, "open_in_tab": true, "page": "options.html" }, "permissions": [ "storage" ], "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png" } } |