Examine source code of Github Profile Extender

Inspect and view changes in Github Profile Extender 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",
  "name": "Github Profile Extender",
  "description": "Github Profile Extender gives you a quick overview of a Github user or the author of a repository.",
  "version": "0.0.1",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "scripting"
  ],
  "action": {
    "default_title": "Click to see more about the Github user",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/github-profile-extender-16-disabled.png",
      "32": "/images/github-profile-extender-32-disabled.png",
      "48": "/images/github-profile-extender-48-disabled.png",
      "128": "/images/github-profile-extender-128-disabled.png"
    }
  },
  "icons": {
    "16": "/images/github-profile-extender-16-default.png",
    "32": "/images/github-profile-extender-32-default.png",
    "48": "/images/github-profile-extender-48-default.png",
    "128": "/images/github-profile-extender-128-default.png"
  }
}