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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    ]
}