Keycloak bearer token getter
Get the authentication bearer token from a configurable Keycloak instance
Cos'è Keycloak bearer token getter?
Keycloak bearer token getter è un'estensione di Chrome sviluppata da legarsjules, e la sua funzione principale è "Get the authentication bearer token from a configurable Keycloak instance".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Keycloak bearer token getter
Scarica i file di estensione Keycloak bearer token getter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Keycloak bearer token getter |
ID | ngflpmnaohiienkdjhdkekndikejaini |
URL Ufficiale | https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini |
Descrizione | Get the authentication bearer token from a configurable Keycloak instance |
Dimensione del File | 119 KB |
Conteggio Installazioni | 163 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2023-10-10 |
Data di Pubblicazione | 2021-02-25 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | legarsjules |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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": [ "*:\/\/*\/*" ] } ] } |