Keycloak bearer token getter

Get the authentication bearer token from a configurable Keycloak instance

Apa itu Keycloak bearer token getter?

Keycloak bearer token getter adalah ekstensi Chrome yang dikembangkan oleh legarsjules, dan fitur utamanya adalah "Get the authentication bearer token from a configurable Keycloak instance".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Keycloak bearer token getter

Unduh file ekstensi Keycloak bearer token getter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Keycloak bearer token getter Keycloak bearer token getter
ID ngflpmnaohiienkdjhdkekndikejaini
URL Resmi https://chromewebstore.google.com/detail/keycloak-bearer-token-get/ngflpmnaohiienkdjhdkekndikejaini
Deskripsi Get the authentication bearer token from a configurable Keycloak instance
Ukuran File 119 KB
Jumlah Instalasi 163
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2023-10-10
Tanggal Publikasi 2021-02-25
Penilaian 5.00/5 Total 2 Penilaian
Pengembang legarsjules
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung 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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}