Point Collector, for Twitch

Point Collector, for Twitch

Automatically collects channel points, even when in a different tab.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Automatically collects channel points, even when in a different tab.",
  "manifest_version": 2,
  "name": "Point Collector, for Twitch",
  "version": "1.0",
  "icons": {
    "48": "icons/ttv-48.png",
    "96": "icons/ttv-96.png"
  },
  "permissions": [
    "https://*.twitch.tv/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "run_at": "document_start",
      "js": [
        "content.js"
      ]
    }
  ]
}