AWS Colorful Navbar
Change navbar color and flag according to AWS region
AWS Colorful Navbar là gì?
AWS Colorful Navbar là một tiện ích mở rộng Chrome được phát triển bởi nalbam, và tính năng chính của nó là "Change navbar color and flag according to AWS region".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AWS Colorful Navbar
Tải xuống các tệp mở rộng AWS Colorful Navbar 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
URL Chính Thức | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Mô tả | Change navbar color and flag according to AWS region |
Kích Thước Tệp | 1.77 MB |
Số Lần Cài Đặt | 248 |
Phiên Bản Hiện Tại | 1.7.1 |
Cập Nhật Lần Cuối | 2022-11-16 |
Ngày Phát Hành | 2022-05-24 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | nalbam |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/nalbam/aws-navbar-extension |
URL Trang Chính Sách Bảo Mật | https://nalbam.github.io/privacy |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } ] } |