Twitch Channel Points Gift Box Plugin

Twitch Channel Points Gift Box Plugin

This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Twitch Channel Points Gift Box Plugin",
  "description": "This extension automatically clicks the channel point gift box for each tab that has a Twitch stream.",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "https://www.twitch.tv/*"
      ],
      "js": [
        "poll.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Channel Points",
    "default_icon": "gift-box.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "https://www.twitch.tv/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}