贴吧帖子广告过滤器

拦截贴吧帖子广告

// ==UserScript==
// @name         贴吧帖子广告过滤器
// @namespace    https://www.dreamcenter.top/
// @version      2025-07-22
// @description  拦截贴吧帖子广告
// @author       dreamcenter
// @match        https://tieba.baidu.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    window.onload = function () {
        setInterval(() => {
            var ads = document.querySelectorAll('.ylh-ad-wrap,.ylh-ad-container')

            ads.forEach(item => {
                item.style.display = 'none'
            })
        }, 500)
    }
})();