Keycloak bearer token getter

Get the authentication bearer token from a configurable Keycloak instance

Co to jest Keycloak bearer token getter?

Keycloak bearer token getter to rozszerzenie Chrome opracowane przez legarsjules, a jego główną funkcją jest „Get the authentication bearer token from a configurable Keycloak instance”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Keycloak bearer token getter

Pobierz pliki rozszerzeń Keycloak bearer token getter 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

                        This extension let you the possibility to get an authentication token and a decoded token from a Keycloak server. You can save configuration to be able to get tokens from different server.                    

Podstawowe informacje o rozszerzeniu

Nazwa Keycloak bearer token getter Keycloak bearer token getter
ID ngflpmnaohiienkdjhdkekndikejaini
Oficjalny URL https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini
Opis Get the authentication bearer token from a configurable Keycloak instance
Rozmiar pliku 119 KB
Liczba instalacji 163
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2023-10-10
Data Publikacji 2021-02-25
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper legarsjules
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Keycloak bearer token getter",
    "version": "1.0.3",
    "description": "Get the authentication bearer token from a configurable Keycloak instance",
    "permissions": [
        "storage",
        "identity"
    ],
    "options_page": "src\/pages\/options\/index.html",
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "action": {
        "default_popup": "src\/pages\/popup\/index.html",
        "default_icon": "icon_32px.png"
    },
    "icons": {
        "128": "icon_128px.png"
    },
    "devtools_page": "src\/pages\/devtools\/index.html",
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/js\/*.js",
                "assets\/css\/*.css",
                "icon_128px.png",
                "icon_32px.png"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}