Greasy Fork

Greasy Fork is available in English.

天涯垃圾楼层过滤器

隐藏掉帖子中的红包楼层、打赏楼层和10字以下的楼层

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

// ==UserScript==
// @name         天涯垃圾楼层过滤器
// @namespace    http://tampermonkey.net/
// @version      0.2
// @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').parents('div.atl-item').remove();
    $('div.bbs-content').each(function() {
        if ($.trim($(this).html()).length<11) {
            $(this).parents('div.atl-item').remove();
        }
    });
    $('a.dashang-btn').parents('div.atl-item').remove();
})();