Twitch_AutoCollectPoints

Automaticly collects twitch points when watching a streamer

目前为 2021-05-22 提交的版本。查看 最新版本

// ==UserScript==
// @name         Twitch_AutoCollectPoints
// @namespace    https://waryor.com
// @version      0.1
// @description  Automaticly collects twitch points when watching a streamer
// @author       RustyPrimeLUX
// @match        https://www.twitch.tv/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var debug = false;
    setInterval(function(){
        if(debug)console.log("checking");
        var item = document.querySelector(".claimable-bonus__icon");
        if(item != undefined){
             item.click();
        }
        if(debug)console.log(item);
    }, 10000);
})();

QingJ © 2025

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