Keycloak bearer token getter

Get the authentication bearer token from a configurable Keycloak instance

Co je Keycloak bearer token getter?

Keycloak bearer token getter je rozšíření Chrome vyvinuté legarsjules, a jeho hlavní funkcí je „Get the authentication bearer token from a configurable Keycloak instance“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Keycloak bearer token getter

Stáhněte si soubory rozšíření Keycloak bearer token getter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Keycloak bearer token getter Keycloak bearer token getter
ID ngflpmnaohiienkdjhdkekndikejaini
Oficiální URL https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini
Popis Get the authentication bearer token from a configurable Keycloak instance
Velikost souboru 119 KB
Počet instalací 163
Aktuální Verze 1.0.3
Poslední Aktualizace 2023-10-10
Datum Vydání 2021-02-25
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář legarsjules
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}