AWS Region Warning
Be notified when AWS switches your default region.
¿Qué es AWS Region Warning?
AWS Region Warning es una extensión de Chrome desarrollada por 0x4447, LLC., y su función principal es "Be notified when AWS switches your default region.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión AWS Region Warning
Descarga archivos de extensión AWS Region Warning en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | |
ID | oggpapdmcofdokdfnjpmimimefnnmoaf |
URL Oficial | https://chrome.google.com/webstore/detail/aws-region-warning/oggpapdmcofdokdfnjpmimimefnnmoaf |
Descripción | Be notified when AWS switches your default region. |
Tamaño del Archivo | 28.23 KB |
Cantidad de Instalaciones | 42 |
Versión Actual | 1.1 |
Última Actualización | 2019-11-24 |
Fecha de Publicación | 2019-11-24 |
Desarrollador | 0x4447, LLC. |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://0x4447.com |
URL de la Página de Ayuda | https://0x4447.com/contact |
URL de la Página de Política de Privacidad | https://0x4447.com |
Idiomas Soportados | 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" ] } ] } |