GitHub Email Extension

GitHub Email Extension

A browser extension which shows a developer's email on their profile page (if not there already) by searching their commits.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GitHub Email Extension",
  "description": "A browser extension which shows a developer's email on their profile page (if not there already) by searching their commits.",
  "version": "0.0.0.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "exclude_matches": [
        "https://github.com/*/*"
      ],
      "js": [
        "js/content_script.js"
      ]
    }
  ]
}