AWS Region Warning

Be notified when AWS switches your default region.

AWS Region Warning là gì?

AWS Region Warning là một tiện ích mở rộng Chrome được phát triển bởi 0x4447, LLC., và tính năng chính của nó là "Be notified when AWS switches your default region.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AWS Region Warning

Tải xuống các tệp mở rộng AWS Region Warning dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AWS Region Warning AWS Region Warning
ID oggpapdmcofdokdfnjpmimimefnnmoaf
URL Chính Thức https://chrome.google.com/webstore/detail/aws-region-warning/oggpapdmcofdokdfnjpmimimefnnmoaf
Mô tả Be notified when AWS switches your default region.
Kích Thước Tệp 28.23 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-11-24
Ngày Phát Hành 2019-11-24
Nhà Phát Triển 0x4447, LLC.
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://0x4447.com
URL Trang Trợ Giúp https://0x4447.com/contact
URL Trang Chính Sách Bảo Mật https://0x4447.com
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}