AWS Region Warning

Be notified when AWS switches your default region.

Cos'è AWS Region Warning?

AWS Region Warning è un'estensione di Chrome sviluppata da 0x4447, LLC., e la sua funzione principale è "Be notified when AWS switches your default region.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione AWS Region Warning

Scarica i file di estensione AWS Region Warning in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome AWS Region Warning AWS Region Warning
ID oggpapdmcofdokdfnjpmimimefnnmoaf
URL Ufficiale https://chrome.google.com/webstore/detail/aws-region-warning/oggpapdmcofdokdfnjpmimimefnnmoaf
Descrizione Be notified when AWS switches your default region.
Dimensione del File 28.23 KB
Conteggio Installazioni 42
Versione Corrente 1.1
Ultimo Aggiornamento 2019-11-24
Data di Pubblicazione 2019-11-24
Sviluppatore 0x4447, LLC.
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://0x4447.com
URL della Pagina di Aiuto https://0x4447.com/contact
URL della Pagina della Politica sulla Privacy https://0x4447.com
Lingue Supportate 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"
            ]
        }
    ]
}