Twitch Follower Count

Twitch Follower Count

Configurable Chrome extension that shows follower count when in a twitch channel page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Follower Count",
  "version": "1.0.0",
  "description": "Configurable Chrome extension that shows follower count when in a twitch channel page.",
  "icons": {
    "16": "res/twitch-follower-count-icon-16x16.png",
    "32": "res/twitch-follower-count-icon-32x32.png",
    "48": "res/twitch-follower-count-icon-48x48.png",
    "64": "res/twitch-follower-count-icon-64x64.png",
    "128": "res/twitch-follower-count-icon-128x128.png"
  },
  "options_page": "options/index.html",
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*.twitch.tv/*",
        "https://*.twitch.tv/*"
      ],
      "js": [
        "twitch-follower-count.user.js"
      ],
      "css": [
        "twitch-follower-count.css"
      ]
    }
  ],
  "manifest_version": 3
}