aws-saml-search

If you have access to a large number of AWS accounts via SAML SSO, the account picker page can get rather unwieldly. This extension…

Co to jest aws-saml-search?

aws-saml-search to rozszerzenie Chrome opracowane przez shawn.siefkas, a jego główną funkcją jest „If you have access to a large number of AWS accounts via SAML SSO, the account picker page can get rather unwieldly. This extension…”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia aws-saml-search

Pobierz pliki rozszerzeń aws-saml-search w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        If you have access to a large number of AWS accounts via SAML SSO, the account picker page can get rather unwieldly. This extension adds a type ahead search box to quickly find a role by account ID, role name, or account alias. Upon selection, the form is submitted to complete the login.                    

Podstawowe informacje o rozszerzeniu

Nazwa aws-saml-search aws-saml-search
ID dgnkjmeflgibefhijajhbkcjepbpnlgp
Oficjalny URL https://chromewebstore.google.com/detail/aws-saml-search/dgnkjmeflgibefhijajhbkcjepbpnlgp
Opis If you have access to a large number of AWS accounts via SAML SSO, the account picker page can get rather unwieldly. This extension…
Rozmiar pliku 159 KB
Liczba instalacji 208
Aktualna Wersja 1.6.1
Ostatnia Aktualizacja 2021-04-21
Data Publikacji 2020-01-26
Ocena 5.00/5 Łącznie 4 Oceny
Deweloper shawn.siefkas
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/speshak/aws-saml-search
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "aws-saml-search",
    "author": "Scott Peshak",
    "homepage_url": "https:\/\/github.com\/speshak\/aws-saml-search",
    "version": "1.6.1",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/signin.aws.amazon.com\/saml",
                "https:\/\/signin.amazonaws-us-gov.com\/saml"
            ],
            "js": [
                "jquery-3.4.1.slim.min.js",
                "popper.min.js",
                "bootstrap.min.js",
                "bootstrap-autocomplete.min.js",
                "account-search.js"
            ],
            "css": [
                "bootstrap.min.css"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}