木杉·自用

本脚本支持去除 腾讯视频 web平台的非内嵌水印,支持去除 csdn 右侧小广告

目前為 2021-11-21 提交的版本,檢視 最新版本

// ==UserScript==
// @name         木杉·自用
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  本脚本支持去除 腾讯视频 web平台的非内嵌水印,支持去除 csdn 右侧小广告
// @author       木杉qq1515585503
// @match        https://v.qq.com/*
// @match        https://blog.csdn.net/*
// @grant        授权非商业使用,未经允许,禁止复制粘贴相关源码
// @license MIT
// ==/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)

})();

QingJ © 2025

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