Enhanced Highlighting for Twitch

Enhanced Highlighting for Twitch

Individually highlight different types of users in chat with custom colors to make them stand out. Requires BetterTTV.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enhanced Highlighting for Twitch",
  "version": "1.5.2",
  "manifest_version": 2,
  "description": "Individually highlight different types of users in chat with custom colors to make them stand out. Requires BetterTTV.",
  "short_name": "Enhanced Highlighting",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "permissions": [
    "*://twitch.tv/*",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.min.js",
        "arrive.js",
        "highlight.js"
      ],
      "css": [
        "main.css"
      ],
      "matches": [
        "*://*.twitch.tv/*"
      ],
      "exclude_globs": [
        "*://api.twitch.tv/*"
      ]
    }
  ],
  "options_ui": {
    "chrome_style": true,
    "page": "options-new.html"
  },
  "web_accessible_resources": [
    "icomoon.ttf"
  ],
  "minimum_chrome_version": "50"
}