GitHub mention with icon

GitHub mention with icon

This makes GitHub mention more easy by showing user icon on dropdown menu of mention in GitHub.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub mention with icon",
  "version": "1.5",
  "description": "This makes GitHub mention more easy by showing user icon on dropdown menu of mention in GitHub.",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}