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 |
公式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 |
Eメール | [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": [ "*:\/\/*\/*" ] } ] } |