AWS SSO Extender

Organize access to the AWS console & other AWS SSO (Identity Center) applications

AWS SSO Extender란 무엇입니까?

AWS SSO Extender은(는) https://wtfender.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organize access to the AWS console & other AWS SSO (Identity Center) applications"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        ⭐ Quickly access your Favorite AWS SSO apps
🎨 Customize your profiles, roles & AWS console
🔑 Assume IAM roles from your SSO profiles                    

확장 프로그램 기본 정보

이름 AWS SSO Extender AWS SSO Extender
ID pojoaiboolahdaedebpjgnllehpofkep
공식 URL https://chromewebstore.google.com/detail/aws-sso-extender/pojoaiboolahdaedebpjgnllehpofkep
설명 Organize access to the AWS console & other AWS SSO (Identity Center) applications
파일 크기 794 KB
설치 횟수 1,051
현재 버전 1.8.5
최근 업데이트 2024-03-01
출시 날짜 2023-02-14
평점 5.00/5 총 5 개의 평점
개발자 https://wtfender.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/WTFender/aws-sso-extender
도움말 페이지 URL https://github.com/WTFender/aws-sso-extender/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS SSO Extender",
    "description": "Organize access to the AWS console & other AWS SSO (Identity Center) applications",
    "version": "1.8.5",
    "author": "WTFender",
    "homepage_url": "https:\/\/github.com\/WTFender\/aws-sso-extender",
    "manifest_version": 3,
    "icons": {
        "16": "icons\/red\/16.png",
        "32": "icons\/red\/32.png",
        "128": "icons\/red\/128.png"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "src\/options.html"
    },
    "action": {
        "default_popup": "src\/popup.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        },
        "openProfile1": {
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "MacCtrl+Shift+1"
            },
            "description": "Open Profile #1"
        },
        "openProfile2": {
            "suggested_key": {
                "default": "Ctrl+Shift+2",
                "mac": "MacCtrl+Shift+2"
            },
            "description": "Open Profile #2"
        },
        "openProfile3": {
            "suggested_key": {
                "default": "Ctrl+Shift+3",
                "mac": "MacCtrl+Shift+3"
            },
            "description": "Open Profile #3"
        }
    },
    "background": {
        "service_worker": "src\/entry\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.awsapps.com\/start*"
            ],
            "js": [
                "src\/entry\/aws-sso.js"
            ]
        },
        {
            "matches": [
                "https:\/\/*.console.aws.amazon.com\/*"
            ],
            "js": [
                "src\/entry\/aws-console.js"
            ]
        },
        {
            "matches": [
                "https:\/\/signin.aws.amazon.com\/switchrole?*"
            ],
            "js": [
                "src\/entry\/aws-switchrole.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'none'; worker-src 'none'; img-src 'self' data: https:\/\/static.global.sso.amazonaws.com\/"
    },
    "cross_origin_opener_policy": {
        "value": "same-origin"
    },
    "permissions": [
        "storage"
    ],
    "optional_permissions": [
        "history"
    ]
}