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
官方網址 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"
            ]
        }
    ]
}