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. 扩展基本信息
| 名称 | |
| ID | ngflpmnaohiienkdjhdkekndikejaini |
| 官方URL | 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": [
"*:\/\/*\/*"
]
}
]
} | |