AWS Region Warning

Be notified when AWS switches your default region.

AWS Region Warningとは何ですか?

AWS Region Warningは0x4447, LLC.によって開発されたChromeの拡張機能で、その主な機能は「Be notified when AWS switches your default region.」です。

拡張機能のスクリーンショット

screenshot
screenshot

AWS Region Warning拡張機能のCRXファイルをダウンロード

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.                    

拡張機能の基本情報

名前 AWS Region Warning AWS Region Warning
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.
Eメール [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"
            ]
        }
    ]
}