定时轮询开箱
当前为
// ==UserScript==
// @name 虎牙自动最高画质
// @namespace https://gf.qytechs.cn/
// @version 1.0
// @description 定时轮询开箱
// @author Cosil
// @include *www.huya.com/*
// ==/UserScript==
$(function() {
var t1 = setInterval(function(){
console.log("t1 is live");
if($(".player-videotype-cur").html()!=$(".player-videotype-list li:first").html()){
$(".player-videotype-list li:first").click();
var watch = setInterval(function(){
console.log("watch is live");
if($(".player-play-big")[0].style.display=="block"){
$(".player-play-big").click();
clearInterval(watch);
}
},100);
}else{
clearInterval(t1);
}
},1000);
})
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址