Contributors on Github

Contributors on Github

Show a contributor stats when looking at an issue or PR on GitHub!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Contributors on Github",
  "description": "Show Contributor Stats on Github",
  "short_name": "Stats on Github",
  "homepage_url": "https://github.com/hzoo/contributors-on-github",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwnKOOu3IkB/A55pdBjEV988NSgMzl8KDo4vZeCz9uuWEyYRLOF63/i8rm4ujFgGm+sfOqIm7u3wNKmgIfEdZwdswWeVC/0/Gra4frixoiQcsykapk7bKFAuFDA06p4jHmmfZZs32bujZaqRDE9Fm4lJ4+otikCmZodHf5oxHu1NdGVSlyiFDpqh7wkg6zhUvOU5vr2bC/Ot5EMAMEtv6oHW5MAflxnLvERc0pK2abVRWvXBM9EbsekSa+d4WwJ2tMDFOe2KDM/FS6+6Jjhm/6SKDc30b+o9Ts8ueDNg8anZ0bOYvzdFtTZYqyQ18zYV252UKDOAgg1rhJkUe9RvNnwIDAQAB",
  "version": "21.3.1",
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "https://github.com/*/*",
    "https://api.github.com/*",
    "storage",
    "identity"
  ],
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "manifest_version": 2,
  "minimum_chrome_version": "80",
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "https://github.com/*/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "storage.js",
        "vendor/github-injection.js",
        "content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "74.0"
    }
  }
}