// ==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 // @downloadURL 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(); })();