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”。

扩展截图

screenshot
screenshot
screenshot

下载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 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
隐私政策页面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\/*"
            ]
        }
    ]
}