AWS console regions color

Changes the AWS console header color depending on the region you selected. We use the Flags Icon Pack from Iconscout.

AWS console regions color là gì?

AWS console regions color là một tiện ích mở rộng Chrome được phát triển bởi CAPCOD, và tính năng chính của nó là "Changes the AWS console header color depending on the region you selected. We use the Flags Icon Pack from Iconscout.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng AWS console regions color

Tải xuống các tệp mở rộng AWS console regions color dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This extension changes the AWS console header color depending on the region you selected. This visual hint will help you avoid creating resources in the wrong region !
It also adds the code along the region, by example for London : eu-west-2, and a flag corresponding to the contry the region belongs to.

Remember that the console is useful but the AWS cloud is optimised for automation, consider using the CLI or Cloudformation !

This extension required the "tabs" privilege to dynamically update the colors of the headers in the tabs when you customize them. It won't collect, read or transmit any data of any kind.

 This extension uses the Country Flags Icon Pack from Iconscout.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AWS console regions color AWS console regions color
ID gfeaclafcmbiakopneapkbaiifnhbkng
URL Chính Thức https://chromewebstore.google.com/detail/aws-console-regions-color/gfeaclafcmbiakopneapkbaiifnhbkng
Mô tả Changes the AWS console header color depending on the region you selected. We use the Flags Icon Pack from Iconscout.
Kích Thước Tệp 265 KB
Số Lần Cài Đặt 647
Phiên Bản Hiện Tại 0.9
Cập Nhật Lần Cuối 2021-01-24
Ngày Phát Hành 2019-11-10
Đánh Giá 4.67/5 Tổng số 18 Đánh Giá
Nhà Phát Triển CAPCOD
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.charon.org/extension.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "browser_specific_settings": {
        "gecko": {
            "id": "{3cdafb93-7c8b-45c0-b555-b092bad1c797}",
            "strict_min_version": "57.0"
        }
    },
    "manifest_version": 2,
    "name": "AWS console regions color",
    "description": "Changes the AWS console header color depending on the region you selected. We use the Flags Icon Pack from Iconscout.",
    "version": "0.9",
    "browser_action": {
        "default_icon": "favicon.png",
        "default_popup": "popup.html",
        "default_title": "AWS Regions header color"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.console.aws.amazon.com\/*"
            ],
            "all_frames": true,
            "js": [
                "scripts\/jquery-3.4.1.min.js",
                "scripts\/content.js",
                "scripts\/extension.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'sha256-a16d520011aa6f272d0fc197e41f426755b2a2d8638cc35bb13e7121f69059e7' 'sha256-477a941eaba832a7362cb8bb67a090bfd2aa9e29a1c1143d3beeae641d600658' 'sha256-aec3d419d50f05781a96f223e18289aeb52598b5db39be82a7b71dc67d6a7947' 'sha256-0925e8ad7bd971391a8b1e98be8e87a6971919eb5b60c196485941c3c1df089a'; object-src 'self'; img-src 'self'",
    "icons": {
        "16": "favicon-16x16.png",
        "32": "favicon-32x32.png",
        "96": "favicon-96x96.png",
        "128": "store_icon-128x128.png"
    },
    "web_accessible_resources": [
        "flags\/*.png",
        "data\/*.json"
    ]
}