// ==UserScript== // @name 虎牙自动开宝箱 // @namespace https://greasyfork.org/ // @version 1.1 // @description 定时轮询开箱 // @author Cosil // @include http*//www.huya.com/* // @grant none // @downloadURL none // ==/UserScript== setInterval(function(){ var box = $(".player-box-stat3"); if($(box[5]).parent().children("p")[3].innerHTML == ""){ box.each(function(){ if(this.style.visibility=="visible"){ this.click(); } }); } }, 10000);