Examine source code of OpenID Connect Helper

Inspect and view changes in OpenID Connect Helper 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
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "OpenID Connect Helper",
  "version": "0.1.1",
  "description": "Automate the OpenID Connect playground",
  "permissions": [
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://openidconnect.net/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "author": "thilinalakshanmail@gmail.com",
  "homepage_url": "https://github.com/ThilinaTLM/OpenIdConnectHelper",
  "single_purpose": {
    "description": "This extension automates interactions with the OpenID Connect playground by providing convenient buttons to initiate authorization flow and copy access tokens."
  }
}