虎牙自动开宝箱

定时轮询开箱

目前为 2019-05-28 提交的版本。查看 最新版本

// ==UserScript==
// @name         虎牙自动开宝箱
// @namespace    https://gf.qytechs.cn/
// @version      1.0
// @description  定时轮询开箱
// @author       Cosil
// @match        http://www.huya.com/*
// @grant        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);

QingJ © 2025

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