// ==UserScript== // @name 去爱奇艺体育Logo // @namespace http://tampermonkey.net/ // @version 0.2 // @description 爱奇艺体育 // @author Mark // @match http*://sports.iqiyi.com/* // @grant none // @require http://code.jquery.com/jquery-1.11.0.min.js // @downloadURL none // ==/UserScript== (function() { setTimeout(function (){ console.log("去爱奇艺体育Logo开始执行"); $("#video > div.M706C61796572-watermark.watermark-1 > img").remove(); console.log("页面加载执行成功"); },5000 ); })();