AWS Show MFA
Make the MFA window show on AWS signin
AWS Show MFA란 무엇입니까?
AWS Show MFA은(는) luke.eisenbraun에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Make the MFA window show on AWS signin"입니다.
확장 프로그램 스크린샷
AWS Show MFA 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you or your company uses an MFA token for AWS this will make signing in slightly quicker. Instead of clicking the check-box to show the MFA field the field will now automatically show as well as remove the check-box for easy tabbing. If you choose to show the browser action (icon), you can set your signin url in the options and it will take you there. If you are signed into chrome, the "signin" url will sync across devices.
확장 프로그램 기본 정보
이름 | AWS Show MFA |
ID | kofcffedmdmnbempngiopofnogaooeko |
공식 URL | https://chromewebstore.google.com/detail/aws-show-mfa/kofcffedmdmnbempngiopofnogaooeko |
설명 | Make the MFA window show on AWS signin |
파일 크기 | 13.26 KB |
설치 횟수 | 145 |
현재 버전 | 1.2 |
최근 업데이트 | 2015-02-23 |
출시 날짜 | 2015-02-23 |
평점 | 2.33/5 총 3 개의 평점 |
개발자 | luke.eisenbraun |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Luke Eisenbraun", "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon-48.png" }, "content_scripts": [ { "js": [ "js\/mfashower.js" ], "matches": [ "https:\/\/signin.aws.amazon.com\/*" ] } ], "description": "Make the MFA window show on AWS signin", "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "manifest_version": 2, "name": "AWS Show MFA", "options_page": "options.html", "permissions": [ "storage" ], "version": "1.2" } |