AWS Colorful Navbar
Change navbar color and flag according to AWS region
AWS Colorful Navbar란 무엇입니까?
AWS Colorful Navbar은(는) nalbam에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change navbar color and flag according to AWS region"입니다.
확장 프로그램 스크린샷
AWS Colorful Navbar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
In the AWS console, you can select a region by country. However, the expression according to the region is not clear, so it is sometimes confusing which region is currently selected. This extension will change the navigation background at the top to the regional color of the selected region. And the flag is displayed in front of the region name. see: https://github.com/nalbam/aws-navbar-extension
확장 프로그램 기본 정보
이름 | AWS Colorful Navbar |
ID | kgifmgnlchjjippdpkblbdlfidcpceme |
공식 URL | https://chromewebstore.google.com/detail/aws-colorful-navbar/kgifmgnlchjjippdpkblbdlfidcpceme |
설명 | Change navbar color and flag according to AWS region |
파일 크기 | 1.77 MB |
설치 횟수 | 248 |
현재 버전 | 1.7.1 |
최근 업데이트 | 2022-11-16 |
출시 날짜 | 2022-05-24 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | nalbam |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/nalbam/aws-navbar-extension |
개인정보 보호 정책 페이지 URL | https://nalbam.github.io/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AWS Colorful Navbar", "description": "Change navbar color and flag according to AWS region", "version": "1.7.1", "manifest_version": 3, "icons": { "128": "icon.png" }, "permissions": [ "activeTab", "storage" ], "host_permissions": [ "*:\/\/*.console.aws.amazon.com\/*" ], "action": { "default_icon": { "128": "icon.png" }, "default_popup": "popup.html", "default_title": "AWS Colorful Navbar" }, "content_scripts": [ { "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ], "js": [ "main.js" ] } ], "web_accessible_resources": [ { "resources": [ "flags\/*.png", "svcs\/*.svg", "svcs\/*.ico" ], "matches": [ "*:\/\/*.console.aws.amazon.com\/*" ] } ] } |