AWS Region Warning

Be notified when AWS switches your default region.

AWS Region Warningคืออะไร?

AWS Region Warning เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 0x4447, LLC. และคุณลักษณะหลักของมันคือ "Be notified when AWS switches your default region."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS Region Warning

ดาวน์โหลดไฟล์ส่วนขยาย 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.
อีเมล [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"
            ]
        }
    ]
}