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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AWS Region Warning
قم بتنزيل ملفات الامتداد AWS Region Warning بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | |
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 |
عنوان صفحة المساعدة | https://0x4447.com/contact |
عنوان صفحة سياسة الخصوصية | 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" ] } ] } |