虎牙免登陆(修复版)

虎牙免登陆看高清

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

  1. // ==UserScript==
  2. // @name 虎牙免登陆(修复版)
  3. // @namespace https://gf.qytechs.cn/
  4. // @version 1.0.0
  5. // @description 虎牙免登陆看高清
  6. // @author smzh369
  7. // @match https?://www.huya.com/*
  8. // @grant none
  9. // @require http://code.jquery.com/jquery-1.7.2.min.js
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. wait4Element("li[ibitrate='2000']", 1000, function() {
  15. console.log('no login loaded');
  16. $('#player-login-tip-wrap').remove();
  17. VPlayer.prototype.checkLogin(true);
  18. });
  19. })();
  20.  
  21. function wait4Element(selector, time, func) {
  22. if (document.querySelector(selector) !== null) {
  23. func();
  24. return;
  25. } else {
  26. setTimeout(function() {
  27. wait4Element(selector, time, func);
  28. }, time);
  29. }
  30. }

QingJ © 2025

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