Keycloak bearer token getter
Get the authentication bearer token from a configurable Keycloak instance
Wat is Keycloak bearer token getter?
Keycloak bearer token getter is een Chrome-extensie ontwikkeld door legarsjules, en de belangrijkste functie is "Get the authentication bearer token from a configurable Keycloak instance".
Extensie Screenshots
Download het CRX-bestand van de extensie Keycloak bearer token getter
Download Keycloak bearer token getter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Keycloak bearer token getter |
ID | ngflpmnaohiienkdjhdkekndikejaini |
Officiële URL | https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini |
Beschrijving | Get the authentication bearer token from a configurable Keycloak instance |
Bestandsgrootte | 119 KB |
Aantal Installaties | 163 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2023-10-10 |
Publicatiedatum | 2021-02-25 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | legarsjules |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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": [ "*:\/\/*\/*" ] } ] } |