Keycloak bearer token getter
Get the authentication bearer token from a configurable Keycloak instance
What is Keycloak bearer token getter?
Keycloak bearer token getter is a Chrome extension developed by legarsjules, and its main feature is "Get the authentication bearer token from a configurable Keycloak instance".
Extension Screenshots
Download Keycloak bearer token getter Extension CRX File
Download Keycloak bearer token getter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Keycloak bearer token getter |
ID | ngflpmnaohiienkdjhdkekndikejaini |
Official URL | https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini |
Description | Get the authentication bearer token from a configurable Keycloak instance |
File Size | 119 KB |
Installation Count | 163 |
Current Version | 1.0.3 |
Last Updated | 2023-10-10 |
Publish Date | 2021-02-25 |
Rating | 5.00/5 Total 2 Ratings |
Developer | legarsjules |
[email protected] | |
Payment Type | free |
Supported Languages | 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": [ "*:\/\/*\/*" ] } ] } |