贴吧屏蔽包打听

屏蔽包打听难看的头像和没用的长篇大论,但保留它存在过的痕迹

// ==UserScript==
// @name         贴吧屏蔽包打听
// @namespace    qtqz
// @version      0.2
// @description  屏蔽包打听难看的头像和没用的长篇大论,但保留它存在过的痕迹
// @author       qtqz
// @match        https://tieba.baidu.com/p/*
// @icon         https://tieba.baidu.com/favicon.ico
// @license      MIT
// @grant        none
// ==/UserScript==

//2024/1/14

(function () {
    'use strict';

        var node = document.createElement("style");
        node.appendChild(document.createTextNode(`
        img[username='贴吧包打听'] {
            display: none;
}
    `));
        var heads = document.getElementsByTagName("head");
        if (heads.length > 0) {
            heads[0].appendChild(node);
        } else {
            document.documentElement.appendChild(node);
        }
    setTimeout(()=>{
        $("img[username='贴吧包打听']").parents(".d_author").next().children(".p_content").empty()//[0].style.display='none'
    },100)
})();

QingJ © 2025

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