// ==UserScript== // @name 天涯垃圾楼层过滤器 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 隐藏掉帖子中的红包楼层、打赏楼层、废话和只有英文数字的楼层 // @require https://code.jquery.com/jquery-2.1.4.min.js // @author 高压锅 // @include http*://bbs.tianya.cn/post-* // @grant none // @downloadURL none // ==/UserScript== $(function() { var re = new RegExp('
|mark|记号|马克|早上好|晚上好|上午好|中午好|下午好|早安|晚安|(好|顶)(帖|贴)|催更|顶一下|帮顶|点赞|安全点赞区|翻页|顶起|支持(一下|楼主)|快更|等更|坐等更|路过|楼主(加油|继续)|火(钳|前)(留|刘)(名|明)', 'ig'); $('div.red-pkt-v2,a.dashang-btn').parents('div.atl-item').remove(); $('div.bbs-content').each(function() { var dry = $.trim($(this).html().replace(re, '')).replace(/([·…!?!?\n。、.~~,顶])\1+/, '$1'); if (dry.length<3 || /^[a-zA-Z0-9]+$/.test(dry)) { $(this).parents('div.atl-item').remove(); } }); });