去水印,顺带去掉暂停全屏广告
// ==UserScript==
// @name 腾讯视频去水印
// @namespace http://tampermonkey.net/
// @version 0.3
// @description 去水印,顺带去掉暂停全屏广告
// @author Simon
// @include *://v.qq.com/x/cover/*
// @include *://v.qq.com/x/page/*
// @icon https://www.google.com/s2/favicons?domain=qq.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
let intID1 = setInterval(() => {
var a=document.getElementsByClassName("txp-watermark");
var ad=document.getElementsByClassName("txp_full_screen_pause-close");
if (a.length > 0) {
a[0].remove();
var b=document.getElementsByClassName("txp_waterMark_pic");
a[0].removeChild(b[0]);
}
if (ad.length >0){
ad[0].click();
}
}, 1000);
// Your code here...
})();