AWS Navbar Region Color

Change AWS's navbar color depending on the region

What is AWS Navbar Region Color?

AWS Navbar Region Color is a Chrome extension developed by corollari, and its main feature is "Change AWS's navbar color depending on the region".

Extension Screenshots

screenshot

Download AWS Navbar Region Color Extension CRX File

Download AWS Navbar Region Color extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        See https://github.com/corollari/aws-color-region-navbar-extension                    

Extension Basic Information

Name AWS Navbar Region Color AWS Navbar Region Color
ID ofhcnghdbkacblncbjjpcdfmbknhckkb
Official URL https://chromewebstore.google.com/detail/aws-navbar-region-color/ofhcnghdbkacblncbjjpcdfmbknhckkb
Description Change AWS's navbar color depending on the region
File Size 8.11 KB
Installation Count 88
Current Version 1.0.0
Last Updated 2020-11-04
Publish Date 2020-11-04
Developer corollari
Email [email protected]
Payment Type free
Extension Website https://github.com/corollari/aws-color-region-navbar-extension
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS Navbar Region Color",
    "version": "1.0.0",
    "description": "Change AWS's navbar color depending on the region",
    "manifest_version": 2,
    "browser_action": {
        "default_title": "Options",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [
        "storage",
        "*:\/\/*.console.aws.amazon.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ]
}