AWS Peacock Management Console
Browser Extension to change color of AWS Management Console, by Account ID
AWS Peacock Management Console là gì?
AWS Peacock Management Console là một tiện ích mở rộng Chrome được phát triển bởi hiroga, và tính năng chính của nó là "Browser Extension to change color of AWS Management Console, by Account ID".
Ả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 Peacock Management Console
Tải xuống các tệp mở rộng AWS Peacock Management Console 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
AWS Peacock Management Console store configuration which maps environment(Account ID and Region) to style(color). In AWS Management Console, it modify HTML tags to change color and show account alias. If logged in by AWS SSO, show account name than account name.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | AWS Peacock Management Console |
ID | bknjjajglapfhbdcfgmhgkgfomkkaidj |
URL Chính Thức | https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj |
Mô tả | Browser Extension to change color of AWS Management Console, by Account ID |
Kích Thước Tệp | 33.99 KB |
Số Lần Cài Đặt | 2,047 |
Phiên Bản Hiện Tại | 2.9 |
Cập Nhật Lần Cuối | 2024-01-03 |
Ngày Phát Hành | 2021-10-16 |
Đánh Giá | 4.50/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | hiroga |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/xhiroga/aws-peacock-management-console |
URL Trang Trợ Giúp | https://github.com/xhiroga/aws-peacock-management-console/issues |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS Peacock Management Console", "description": "Browser Extension to change color of AWS Management Console, by Account ID", "version": "2.9", "icons": { "128": "icons\/128.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*.console.aws.amazon.com\/*", "https:\/\/phd.aws.amazon.com\/*", "https:\/\/*.console.amazonaws-us-gov.com\/*", "https:\/\/*.console.amazonaws.cn\/*" ], "run_at": "document_end" }, { "js": [ "scraping.js" ], "matches": [ "https:\/\/*.awsapps.com\/start*" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "browser_specific_settings": { "gecko": { "id": "{5b1686a2-506f-4ca5-ab39-91cd328502aa}" } } } |