Twitch Point Bonus Clicker

Click Twitch Point Bonus button automatically

目前为 2022-07-17 提交的版本。查看 最新版本

// ==UserScript==
// @name         Twitch Point Bonus Clicker
// @namespace    http://tampermonkey.net/
// @version      0.0
// @description  Click Twitch Point Bonus button automatically
// @author       eggplants
// @homepage     https://github.com/eggplants
// @match        https://www.twitch.tv/*
// @grant        none
// @license      MIT
// ==/UserScript==

/*jshint esversion: 6 */

(() => {
  "use strict";
  const check = () => {
    const target = document.querySelector('button[aria-label="Claim Bonus"]');
    if(target !== null && target.getAttribute('onclick') != null){
      target.click();
    }
  };
  setInterval(check, 1000);
})();

QingJ © 2025

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