AWS Peacock Management Console
Browser Extension to change color of AWS Management Console, by Account ID
AWS Peacock Management Console란 무엇입니까?
AWS Peacock Management Console은(는) hiroga에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Browser Extension to change color of AWS Management Console, by Account ID"입니다.
확장 프로그램 스크린샷
AWS Peacock Management Console 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | AWS Peacock Management Console |
ID | bknjjajglapfhbdcfgmhgkgfomkkaidj |
공식 URL | https://chromewebstore.google.com/detail/aws-peacock-management-co/bknjjajglapfhbdcfgmhgkgfomkkaidj |
설명 | Browser Extension to change color of AWS Management Console, by Account ID |
파일 크기 | 33.99 KB |
설치 횟수 | 2,047 |
현재 버전 | 2.9 |
최근 업데이트 | 2024-01-03 |
출시 날짜 | 2021-10-16 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | hiroga |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/xhiroga/aws-peacock-management-console |
도움말 페이지 URL | https://github.com/xhiroga/aws-peacock-management-console/issues |
지원되는 언어 | 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}" } } } |