AWS Colorful Navbar
Change navbar color and flag according to AWS region
什麼是AWS Colorful Navbar?
AWS Colorful Navbar是由nalbam開發的Chrome擴展程式,該擴展的主要功能是“Change navbar color and flag according to AWS region”。
擴展截圖
下載AWS Colorful Navbar擴展crx文件
下載AWS Colorful Navbar擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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 |
隱私政策頁面URL | 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\/*" ] } ] } |