Auto Claim Twitch Channel Points

Auto Claim Twitch Channel Points

Will automatically click the button for claiming channel points on Twitch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Claim Twitch Channel Points",
  "description": "Will automatically click the button for claiming channel points on Twitch.",
  "version": "2.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.twitch.tv/*"
      ],
      "js": [
        "main.js",
        "interval.js",
        "mutation-observer.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage"
  ]
}