Twitch Auto-Redeem Channel Points

Twitch Auto-Redeem Channel Points

Auto-redeems Twitch channel points rewards for you!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Twitch Auto-Redeem Channel Points",
  "version": "1.4.1",
  "description": "Auto-redeems Twitch channel points rewards for you!",
  "manifest_version": 2,
  "permissions": [
    "storage"
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "js/redeem.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "menu.html"
  },
  "icons": {
    "120": "static/icon.png"
  }
}