AWS Region Warning

Be notified when AWS switches your default region.

Co je AWS Region Warning?

AWS Region Warning je rozšíření Chrome vyvinuté 0x4447, LLC., a jeho hlavní funkcí je „Be notified when AWS switches your default region.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření AWS Region Warning

Stáhněte si soubory rozšíření AWS Region Warning ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název AWS Region Warning AWS Region Warning
ID oggpapdmcofdokdfnjpmimimefnnmoaf
Oficiální URL https://chrome.google.com/webstore/detail/aws-region-warning/oggpapdmcofdokdfnjpmimimefnnmoaf
Popis Be notified when AWS switches your default region.
Velikost souboru 28.23 KB
Počet instalací 42
Aktuální Verze 1.1
Poslední Aktualizace 2019-11-24
Datum Vydání 2019-11-24
Vývojář 0x4447, LLC.
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://0x4447.com
URL Stránky Nápovědy https://0x4447.com/contact
URL Stránky Zásad Ochrany Soukromí https://0x4447.com
Podporované Jazyky 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"
            ]
        }
    ]
}