Examine source code of Keycloak bearer token getter

Inspect and view changes in Keycloak bearer token getter source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "Keycloak bearer token getter",
  "version": "0.7",
  "description": "Get the authentication bearer token from a configurable Keycloak instance",
  "manifest_version": 3,
  "action": {
    "default_title": "Keycloak bearer token getter",
    "default_popup": "options.html",
    "default_icon": {
      "16": "icons/icon_16px.png",
      "32": "icons/icon_32px.png",
      "64": "icons/icon_64px.png",
      "128": "icons/icon_128px.png"
    }
  },
  "icons": {
    "16": "icons/icon_16px.png",
    "32": "icons/icon_32px.png",
    "64": "icons/icon_64px.png",
    "128": "icons/icon_128px.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "identity"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}