AWS Colorful Navbar
Change navbar color and flag according to AWS region
Apa itu AWS Colorful Navbar?
AWS Colorful Navbar adalah ekstensi Chrome yang dikembangkan oleh nalbam, dan fitur utamanya adalah "Change navbar color and flag according to AWS region".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AWS Colorful Navbar
Unduh file ekstensi AWS Colorful Navbar dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
URL Resmi | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
Deskripsi | Change navbar color and flag according to AWS region |
Ukuran File | 1.77 MB |
Jumlah Instalasi | 248 |
Versi Saat Ini | 1.7.1 |
Terakhir Diperbarui | 2022-11-16 |
Tanggal Publikasi | 2022-05-24 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | nalbam |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/nalbam/aws-navbar-extension |
URL Halaman Kebijakan Privasi | https://nalbam.github.io/privacy |
Bahasa yang Didukung | 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\/*" ] } ] } |