AWS Colorful Navbar
Change navbar color and flag according to AWS region
ما هو AWS Colorful Navbar؟
AWS Colorful Navbar هو إضافة Chrome تم تطويرها بواسطة nalbam، والميزة الرئيسية لها هي "Change navbar color and flag according to AWS region".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة AWS Colorful Navbar
قم بتنزيل ملفات الامتداد AWS Colorful Navbar بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
In the AWS console, you can select a region by country. However, the expression according to the region is not clear, so it is sometimes confusing which region is currently selected. This extension will change the navigation background at the top to the regional color of the selected region. And the flag is displayed in front of the region name. see: https://github.com/nalbam/aws-navbar-extension
معلومات أساسية عن التمديد
الاسم | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
الوصف | Change navbar color and flag according to AWS region |
حجم الملف | 1.77 MB |
عدد التثبيتات | 248 |
النسخة الحالية | 1.7.1 |
آخر تحديث | 2022-11-16 |
تاريخ النشر | 2022-05-24 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | nalbam |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/nalbam/aws-navbar-extension |
عنوان صفحة سياسة الخصوصية | https://nalbam.github.io/privacy |
اللغات المدعومة | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Colorful Navbar", "description": "Change navbar color and flag according to AWS region", "version": "1.7.1", "manifest_version": 3, "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/*.console.aws.amazon.com\/*" ], "action": { "default_icon": { "128": "icon.png" }, "default_popup": "popup.html", "default_title": "AWS Colorful Navbar" }, "content_scripts": [ { "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ { "resources": [ "flags\/*.png", "svcs\/*.svg", "svcs\/*.ico" ], "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ] } ] } |