aws-helper
this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…
aws-helper란 무엇입니까?
aws-helper은(는) rotagi37에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB…"입니다.
확장 프로그램 스크린샷
aws-helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB form the route53 DNS list also from couldfront you will be able to double click on s3 and it will open in a new tab the icon will give you a fast access to your recent aws console pages + easy way to find the rest
확장 프로그램 기본 정보
이름 | aws-helper |
ID | cokfoodjbmkjmpabapnpldjfappcdgne |
공식 URL | https://chromewebstore.google.com/detail/aws-helper/cokfoodjbmkjmpabapnpldjfappcdgne |
설명 | this extension will set the tab icon according to the page you are currently viewing. it will also make it possible to open ELB… |
파일 크기 | 1.4 MB |
설치 횟수 | 26 |
현재 버전 | 1.0.2.7 |
최근 업데이트 | 2020-07-03 |
출시 날짜 | 2020-07-02 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | rotagi37 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "scripts": [ "\/bg.js" ] }, "browser_action": { "default_icon": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "default_popup": "popup.html", "default_title": "AWS Helper" }, "content_scripts": [ { "all_frames": true, "js": [ "jquery-3.2.1.min.js", "icons.js", "cscript.js" ], "matches": [ "https:\/\/*.aws.amazon.com\/*" ], "run_at": "document_end" } ], "devtools_page": "devtools.html", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png" }, "manifest_version": 2, "name": "aws-helper", "options_page": "options.html", "permissions": [ "tabs", "https:\/\/*.aws.amazon.com\/*" ], "version": "1.0.2.7" } |