GitHub Wrong Account Alert

GitHub Wrong Account Alert

When you have several GitHub accounts, it avoids inadvertant actions with the wrong account on a repository

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "author": "[email protected]",
  "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"
}