Examine source code of GitHub Wrong Account Alert

Inspect and view changes in GitHub Wrong Account Alert 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
{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "author": "pdulvp@laposte.net",
  "version": "1.1",
  "homepage_url": "https://github.com/pdulvp/github-wrong-account-alert",
  "description": "__MSG_extensionDescription__",
  "icons": {
    "16": "icons/icon-16.png",
    "20": "icons/icon-20.png",
    "25": "icons/icon-25.png",
    "30": "icons/icon-30.png",
    "32": "icons/icon-32.png",
    "40": "icons/icon-40.png",
    "48": "icons/icon-48.png",
    "64": "icons/icon-64.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "options_ui": {
    "page": "ui/options.html"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "ui/compat.js",
        "ui/ui-helper.js",
        "content_scripts/content-script.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}