腾讯视频去掉logo

try to take over the world!

// ==UserScript==
// @name         腾讯视频去掉logo
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       pobc
// @license      GPL License
// @match        https://v.qq.com/x/cover/5s6jjhvb15xrm59.html?ptag=10528
// @grant        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);
    }
}

QingJ © 2025

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