Greasy Fork

Greasy Fork is available in English.

天涯垃圾楼层过滤器

把帖子中的红包楼层、打赏楼层和回复小于10字以下的楼层隐藏掉

当前为 2019-05-20 提交的版本,查看 最新版本

// ==UserScript==
// @name         天涯垃圾楼层过滤器
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  把帖子中的红包楼层、打赏楼层和回复小于10字以下的楼层隐藏掉
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// @author       高压锅
// @include      http*://bbs.tianya.cn/post-develop-*.shtml
// @grant        none
// ==/UserScript==

(function() {
    $('div.red-pkt-v2').parent().parent().parent().parent().remove();
    $('a.dashang-btn').parent().parent().parent().parent().remove();
    $('div.bbs-content').each(function() {
        if ($.trim($(this).html()).length<11) {
            $(this).parent().parent().parent().remove();
        }
    });
})();