GitHub Mention Highlighter

GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub Mention Highlighter",
  "version": "0.2.1",
  "description": "Highlight user and team mentions on GitHub",
  "permissions": [
    "https://github.com/*",
    "https://*.githubapp.com/*",
    "https://mail.google.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://*.githubapp.com/*",
        "https://mail.google.com/*"
      ],
      "js": [
        "vendor/jquery/dist/jquery.js",
        "dist/script.js"
      ],
      "css": [
        "dist/style.css"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "manifest_version": 2,
  "options_page": "dist/options.html",
  "options_ui": {
    "page": "dist/options.html",
    "chrome_style": true
  }
}