Keycloak bearer token getter
Get the authentication bearer token from a configurable Keycloak instance
什麼是Keycloak bearer token getter?
Keycloak bearer token getter是由legarsjules開發的Chrome擴展程式,該擴展的主要功能是“Get the authentication bearer token from a configurable Keycloak instance”。
擴展截圖
下載Keycloak bearer token getter擴展crx文件
下載Keycloak bearer token getter擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Keycloak bearer token getter |
ID | ngflpmnaohiienkdjhdkekndikejaini |
官方網址 | https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini |
簡介 | Get the authentication bearer token from a configurable Keycloak instance |
檔案大小 | 119 KB |
安裝次數 | 163 |
目前版本 | 1.0.3 |
更新時間 | 2023-10-10 |
上架時間 | 2021-02-25 |
評分 | 5.00/5 共 2 次評分 |
開發者 | legarsjules |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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": [ "*:\/\/*\/*" ] } ] } |