// ==UserScript== // @name 木杉·自用 // @namespace http://tampermonkey.net/ // @version 0.2 // @description 本脚本支持去除 腾讯视频 视频平台的非内嵌水印,支持去除 csdn 广告 // @author 木杉qq1515585503 // @match https://v.qq.com/* // @match https://blog.csdn.net/* // @grant 授权非商业使用,未经允许,禁止复制粘贴相关源码 // @license MIT // @downloadURL none // ==/UserScript== (function() { var check = setInterval(function () { var tencent = document.getElementsByClassName("txp_waterMark_pic")[0] if (tencent != null) { tencent.remove() return } var csdn = document.getElementsByClassName("csdn-common-logo-advert")[0] if (csdn != null) { csdn.remove() return } },1000) })();