Extension for AWS SSO

This extension is for AWS Single Sign-On (AWS SSO).

Extension for AWS SSO란 무엇입니까?

Extension for AWS SSO은(는) yaggytter에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is for AWS Single Sign-On (AWS SSO)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Extension for AWS SSO 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension is for AWS IAM Identity Center (The old name is AWS SSO). As for now, this extension is providing only following functions.
You will see what am I using Account Name and Permission Set for current console at AWS console's header, AWS console header's color will almost be red if account name has 'Production' in it, and to bring favorite accounts to the top on the SSO login page. (You can customize header colors using regular expressions for account names on the extension option page. Favorites too.)

Source code is here
https://github.com/yaggytter/chrome-extension-awssso                    

확장 프로그램 기본 정보

이름 Extension for AWS SSO Extension for AWS SSO
ID ejjegcnihofdahmbbhekhkcnpflljeej
공식 URL https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej
설명 This extension is for AWS Single Sign-On (AWS SSO).
파일 크기 266 KB
설치 횟수 1,894
현재 버전 1.3.3
최근 업데이트 2023-07-29
출시 날짜 2021-06-13
평점 4.80/5 총 5 개의 평점
개발자 yaggytter
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/yaggytter/chrome-extension-awssso
지원되는 언어 en,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "default_locale": "en",
    "version": "1.3.3",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.awsapps.com\/start#\/",
                "https:\/\/*.awsapps.com\/start\/*",
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/health.aws.amazon.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/fav.png"
            ],
            "matches": [
                "https:\/\/*.awsapps.com\/*",
                "https:\/\/*.console.aws.amazon.com\/*",
                "https:\/\/health.aws.amazon.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}