// ==UserScript== // @name 天涯垃圾楼层过滤器 // @namespace http://tampermonkey.net/ // @version 0.9 // @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() { $('div.red-pkt-v2,a.dashang-btn').parents('div.atl-item').remove(); var re = new RegExp('
|mark|记号|马克|早上好|晚上好|上午好|中午好|下午好|早安|晚安|(好|顶)(帖|贴)|催更|顶一下|帮顶|点赞|安全点赞区|翻页|顶(起|贴|帖)|支持(一下|楼主)|快更|等更|坐等更|路过|楼主(加油|继续)|火(钳|前)|(留|刘)(名|明)|打卡|学习了|谢谢|感(谢|恩)|看看|试试|呵呵|哈哈|恭喜|前排|占座|沙发|板凳|欢迎', 'ig'); $('div.atl-item').each(function() { var jThis = $(this); var jReply = jThis.find('a.ir-showreply'); if (jReply.length > 0) { jReply[0].click(); } else { var dry = $.trim(jThis.find('div.bbs-content').first().html().replace(re, '')).replace(/([·…!?!?\n。、.~~,,顶 ])\1+/g, '$1').replace(/[·…!?!?\n。、.~~,,顶 ]+$/, '').replace(/^[·…!?!?\n。、.~~,,顶 ]+/, ''); if (dry.length<4 || /^[a-zA-Z0-9]+$/.test(dry)) { jThis.remove(); } } }); })();