Click Twitch Point Bonus button automatically
当前为
// ==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('[class="Layout-sc-nxg1ff-0 Aqzax"]');
if(target !== null){
target.click();
}
};
setInterval(check, 100);
})();