AWS Region Warning
Be notified when AWS switches your default region.
Что такое AWS Region Warning?
AWS Region Warning - это расширение Chrome, разработанное 0x4447, LLC., и его основная функция - "Be notified when AWS switches your default region.".
Снимки экрана расширения
Скачать файл CRX расширения AWS Region Warning
Скачайте файлы расширений AWS Region Warning в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For whatever reason AWS will switch you to a different region from time to time. They say this should not happen, and yet it does. This simple Chrome extension will screams if you are in the wrong region based on the default setting you selected.
Основная информация о расширении
Название | |
ID | oggpapdmcofdokdfnjpmimimefnnmoaf |
Официальный URL | https://chrome.google.com/webstore/detail/aws-region-warning/oggpapdmcofdokdfnjpmimimefnnmoaf |
Описание | Be notified when AWS switches your default region. |
Размер файла | 28.23 KB |
Количество установок | 42 |
Текущая Версия | 1.1 |
Последнее Обновление | 2019-11-24 |
Дата публикации | 2019-11-24 |
Разработчик | 0x4447, LLC. |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://0x4447.com |
URL страницы помощи | https://0x4447.com/contact |
URL страницы политики конфиденциальности | https://0x4447.com |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AWS Region Warning", "description": "Be notified when AWS switches your default region.", "version": "1.1", "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "page_action": { "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "default_popup": "change-region.html", "default_title": "AWS Region Warning" }, "permissions": [ "storage", "activeTab", "declarativeContent", "tabs" ], "background": { "scripts": [ "docReady.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.aws.amazon.com\/*" ], "css": [ "aws-region.css" ], "js": [ "docReady.js", "aws-region.js" ] } ] } |