Extension for AWS SSO

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

¿Qué es Extension for AWS SSO?

Extension for AWS SSO es una extensión de Chrome desarrollada por yaggytter, y su función principal es "This extension is for AWS Single Sign-On (AWS SSO).".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Extension for AWS SSO

Descarga archivos de extensión Extension for AWS SSO en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre Extension for AWS SSO Extension for AWS SSO
ID ejjegcnihofdahmbbhekhkcnpflljeej
URL Oficial https://chromewebstore.google.com/detail/extension-for-aws-sso/ejjegcnihofdahmbbhekhkcnpflljeej
Descripción This extension is for AWS Single Sign-On (AWS SSO).
Tamaño del Archivo 266 KB
Cantidad de Instalaciones 1,894
Versión Actual 1.3.3
Última Actualización 2023-07-29
Fecha de Publicación 2021-06-13
Calificación 4.80/5 Total de 5 Calificaciones
Desarrollador yaggytter
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/yaggytter/chrome-extension-awssso
Idiomas Soportados 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"
    }
}