AWS AlwaysON
Stay logged in to AWS console and get STS credentials for CLI access.
AWS AlwaysON란 무엇입니까?
AWS AlwaysON은(는) Ilya Tovbin에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stay logged in to AWS console and get STS credentials for CLI access."입니다.
확장 프로그램 스크린샷
AWS AlwaysON 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension enhances the daily work with AWS when using Google Workspace (formerly GSuite) as it's Identity Provider. Assuming you already have everything configured on both sides, this extension will help you with the following: - Keep your AWS Web Console session refreshed. You will not have to press the AWS link in the Google apps section every hour. - Get temporary STS credentials for CLI access (Replacing tools like aws-google-auth) After installing this extension you need to configure multiple options to get the extension to work properly. Each property has an info tooltip which will explain everything in more detail. This project is completely open source, so you can check it for any security concerns you might have. v1.2.1 - Updater client now supports both Windows and Linux. Check the GIthub page for more info. - You can now select the name of the SAML Provider you set in AWS. It was statically set to 'gsuite' till now. - Default values for options are now set each time you start the extension and not only on the first run. Full changelog available in GitHub.
확장 프로그램 기본 정보
이름 | AWS AlwaysON |
ID | lfplgkokagjgodoeojaodphmjdhlpega |
공식 URL | https://chromewebstore.google.com/detail/aws-alwayson/lfplgkokagjgodoeojaodphmjdhlpega |
설명 | Stay logged in to AWS console and get STS credentials for CLI access. |
파일 크기 | 124 KB |
설치 횟수 | 258 |
현재 버전 | 1.2.1 |
최근 업데이트 | 2023-01-22 |
출시 날짜 | 2022-05-09 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | Ilya Tovbin |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/ilyatbn/aws_alwayson |
도움말 페이지 URL | https://github.com/ilyatbn/aws_alwayson |
개인정보 보호 정책 페이지 URL | https://github.com/ilyatbn/aws_alwayson/blob/master/privacy.md |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS AlwaysON", "description": "Stay logged in to AWS console and get STS credentials for CLI access.", "version": "1.2.1", "action": { "default_popup": "menu.html" }, "icons": { "16": "img\/icon16.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "permissions": [ "storage", "alarms" ], "host_permissions": [ "https:\/\/accounts.google.com\/*", "https:\/\/signin.aws.amazon.com\/*", "https:\/\/console.aws.amazon.com\/*", "https:\/\/sts.amazonaws.com\/*", "http:\/\/localhost\/*" ], "background": { "service_worker": "background.js", "type": "module" }, "options_ui": { "page": "options.html", "open_in_tab": false } } |