Greasy Fork is available in English.

干掉无聊的贴吧包打听

让贴吧网页不再显示这个人工智障的回复

// ==UserScript==
// @name         干掉无聊的贴吧包打听
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  让贴吧网页不再显示这个人工智障的回复
// @author       qh
// @match        https://tieba.baidu.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=baidu.com
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    var posts = document.getElementsByClassName('l_post');
    for (var i = 0; i < posts.length; i++) {
        if (posts[i].innerText.trim().substring(0,5) == '贴吧包打听') {
            posts[i].style.display = 'none';
        }
    }

})();