// ==UserScript== // @name 腾讯视频去掉logo // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://v.qq.com/x/cover/5s6jjhvb15xrm59.html?ptag=10528 // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; window.hideLogTryTimes = 0; waitForElementToDisplay('.txp_waterMark_pic',2000); // Your code here... })(); function waitForElementToDisplay(selector, time) { if(document.querySelector(selector)!=null ||window.hideLogTryTimes>=3) { document.querySelectorAll(".txp_waterMark_pic").forEach(function(item,index,arr){item.style.display='none';}); return; } else { window.hideLogTryTimes++; setTimeout(function() { waitForElementToDisplay(selector, time); }, time); } }