// ==UserScript== // @name 虎牙免登陆(修复版) // @namespace https://greasyfork.org/ // @version 1.0.1 // @description 虎牙免登陆看高清 // @author smzh369 // @match *://www.huya.com/* // @grant none // @require http://code.jquery.com/jquery-1.7.2.min.js // @downloadURL none // ==/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); } }