虎牙免登陆(修复版)

虎牙免登陆看高清

目前为 2019-06-10 提交的版本。查看 最新版本

// ==UserScript==
// @name         虎牙免登陆(修复版)
// @namespace    https://gf.qytechs.cn/
// @version      1.0.1
// @description  虎牙免登陆看高清
// @author       smzh369
// @match        *://www.huya.com/*
// @grant        none
// @require      http://code.jquery.com/jquery-1.7.2.min.js
// ==/UserScript==

(function() {
    'use strict';
    wait4Element("li[ibitrate='2000']", 1000, function() {
      console.log('no login loaded');
      $('#player-login-tip-wrap').remove();
      VPlayer.prototype.checkLogin(true);
   });
})();

function wait4Element(selector, time, func) {
    if (document.querySelector(selector) !== null) {
        func();
        return;
    } else {
        setTimeout(function() {
            wait4Element(selector, time, func);
        }, time);
    }
}

QingJ © 2025

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