// ==UserScript==
// @name 天涯垃圾楼层过滤器
// @namespace http://tampermonkey.net/
// @version 0.10
// @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() {
$('.read-menu').first().append('只看楼主');
$('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();
}
}
});
$('#see-only-host').click(function() {
if ($(this).attr('on')) {
$(this).text('只看楼主');
$('div.atl-item').each(function() {
$(this).attr('isHost') == '1' && $(this).show();
});
$(this).removeAttr('on');
} else {
var hostid = $('.js-bbs-act').attr('_host');
$('div.atl-item').each(function() {
var jThis = $(this);
jThis.attr('_hostid') != hostid && jThis.attr('isHost', '1').hide();
});
$(this).attr('on', '1').text('取消');
}
});
})();