NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Twitch Bonus Collector
// @namespace http://tampermonkey.net/
// @version 0.0.1
// @description Claims Twitch points bonus
// @author asaitov
// @license MIT
// @match https://www.twitch.tv/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(()=>document.querySelectorAll('[data-test-selector="community-points-summary"] button')[1]?.click(),5000)
})();