AWS Colours
Changes the New AWS console header colour based on the Region and/or Account you're using
AWS Colours là gì?
AWS Colours là một tiện ích mở rộng Chrome được phát triển bởi Gingerbreadmat, và tính năng chính của nó là "Changes the New AWS console header colour based on the Region and/or Account you're using".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng AWS Colours
Tải xuống các tệp mở rộng AWS Colours 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 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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | pafgadpbmhggcdcncekcjllcaancmeej |
URL Chính Thức | https://chromewebstore.google.com/detail/aws-colours/pafgadpbmhggcdcncekcjllcaancmeej |
Mô tả | Changes the New AWS console header colour based on the Region and/or Account you're using |
Kích Thước Tệp | 591 KB |
Số Lần Cài Đặt | 38 |
Phiên Bản Hiện Tại | 2.0.3 |
Cập Nhật Lần Cuối | 2020-10-07 |
Ngày Phát Hành | 2020-09-17 |
Nhà Phát Triển | Gingerbreadmat |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |