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": [
                "*:\/\/*\/*"
            ]
        }
    ]
}