Twitch Auto Reward

xqcL

// ==UserScript==
// @name         Twitch Auto Reward
// @namespace    https://www.twitch.tv/
// @version      14.88
// @description  xqcL
// @author       Khenio & iErcan
// @match        https://www.twitch.tv/*
// @grant        none
// ==/UserScript==
 
(function() {
    'use strict';
 
 function random(min, max) {
     return Math.floor(Math.random() * (max - min)) + min;
 }
 
 
 setInterval(function() {
     var url = window.location.href; // actual url
     document.getElementsByClassName("tw-button tw-button--success tw-interactive")[0].click(); // Click the button
 
 }, 10000);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址