Keycloak bearer token getter

Get the authentication bearer token from a configurable Keycloak instance

Что такое Keycloak bearer token getter?

Keycloak bearer token getter - это расширение Chrome, разработанное legarsjules, и его основная функция - "Get the authentication bearer token from a configurable Keycloak instance".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Keycloak bearer token getter

Скачайте файлы расширений 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 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
Электронная почта [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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}