AWS Colours

Changes the New AWS console header colour based on the Region and/or Account you're using

什麼是AWS Colours?

AWS Colours是由Gingerbreadmat開發的Chrome擴展程式,該擴展的主要功能是“Changes the New AWS console header colour based on the Region and/or Account you're using”。

擴展截圖

screenshot

下載AWS Colours擴展crx文件

下載AWS Colours擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This extension changes the AWS console header color depending on the Region and/or Account you've selected and configured. Regions come with a default colour but you can choose any CSS colour for both the Region and/or Account.

Hopefully this will help stop recources being created in the wrong Region and/or Account.

If you have any feedback or ways this could be impoved please let me know.                    

擴展基本資訊

名稱 AWS Colours AWS Colours
ID pafgadpbmhggcdcncekcjllcaancmeej
官方網址 https://chromewebstore.google.com/detail/aws-colours/pafgadpbmhggcdcncekcjllcaancmeej
簡介 Changes the New AWS console header colour based on the Region and/or Account you're using
檔案大小 591 KB
安裝次數 38
目前版本 2.0.3
更新時間 2020-10-07
上架時間 2020-09-17
開發者 Gingerbreadmat
電子郵箱 [email protected]
付費類型 free
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AWS Colours",
    "version": "2.0.3",
    "description": "Changes the New AWS console header colour based on the Region and\/or Account you're using",
    "icons": {
        "16": "images\/logo16.png",
        "32": "images\/logo32.png",
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/logo16.png",
            "32": "images\/logo32.png",
            "48": "images\/logo48.png",
            "128": "images\/logo128.png"
        },
        "default_title": "AWS Colours",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "js\/jquery-3.4.1.min.js",
                "js\/content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "alarms"
    ]
}