AWS Region Color Highlights
In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.
AWS Region Color Highlights란 무엇입니까?
AWS Region Color Highlights은(는) jaimebarriga.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times."입니다.
확장 프로그램 스크린샷
AWS Region Color Highlights 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In the AWS Console's top right nav bar, the Region text will now be uniquely colored (based on the flag of that location) so you'll never lose track of what Region you are in! If you'd like to look at the code, it all lives here: https://github.com/JB4GDI/awsazcolorchromeextension And if this extension has prevented you from making a really expensive mistake, or it just made your life easier, the tip jar can be found here: https://www.paypal.me/JB4GDI Tremendous thanks to Krakaw for making everything more efficient (no more jquery) and adding colored flags to the drop down! There's also a favicon update pack I put together if you liked this extension, and hate that AWS uses the same favicons everywhere: https://chrome.google.com/webstore/detail/aws-favicon-update/ohloajnmmkniehhbmjakbejnomonmijc
확장 프로그램 기본 정보
이름 | AWS Region Color Highlights |
ID | kdjchigefmkankimfkgolpfincgbffkg |
공식 URL | https://chromewebstore.google.com/detail/aws-region-color-highligh/kdjchigefmkankimfkgolpfincgbffkg |
설명 | In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times. |
파일 크기 | 6.46 KB |
설치 횟수 | 272 |
현재 버전 | 1.04 |
최근 업데이트 | 2019-06-07 |
출시 날짜 | 2019-06-06 |
평점 | 4.50/5 총 4 개의 평점 |
개발자 | jaimebarriga.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://jaimebarriga.com/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AWS Region Color Highlights", "description": "In the AWS console's top right nav bar, the Region name will be uniquely colored so you'll know what Region you're in at all times.", "version": "1.04", "author": "Jaime Barriga", "icons": { "16": "colorcube16.png", "48": "colorcube48.png", "128": "colorcube128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.aws.amazon.com\/*", "https:\/\/*.amazonaws-us-gov.com\/*" ], "js": [ "colorchanger.js" ], "run_at": "document_end" } ] } |