Twitch Channel Points Auto Redeem

Twitch Channel Points Auto Redeem

Automatically redeem the bonus channel points when the option pops up in twitch chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Automatically redeem the bonus channel points when the option pops up in twitch chat",
  "manifest_version": 2,
  "name": "Twitch Channel Points Auto Redeem",
  "short_name": "Channel Points Redeemer",
  "version": "20.12.23",
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "twitchAutoredeem.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "128": "icon128.png"
  }
}