// ==UserScript==
// @name 搜书小组(404吧)-主页 帖子过滤器
// @namespace https://gf.qytechs.cn/zh-CN/users/1441970-%E5%8D%97%E7%AB%B9
// @version 0.32
// @description 通过编辑代码管理黑/白名单(无界面)
// @author 南竹
// @match https://404zu.com/*
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
// ======================================
// 用户配置区 (直接修改以下数组)
// ======================================
// 黑名单:包含这些词的帖子将被隐藏
const BLACKLIST = [
'NTR', '绿文', '绿帽', '深绿','绿母', '绿妈',
'加绿', '改绿', '绿改', '纯绿',
'绿黑', '黑绿', '媚黑', '黑人', '扶她', '扶他','公用', '绿奴', '救今州的英雄漂泊者才','她们被灌到怀孕',
'黑鬼', '倪哥', '绿爱之高贵美艳', '为了指挥官夺冠,成为其他对手', '逆子难防',, '为了指挥官夺冠,成为其他对手', '逆子难防', '间谍过家家:处女', '轮奸',
'母一去兮不复还', '母蚀:我无能为力', '议员长妈妈被', '美人篇', '浴房篇', '待定待定A', '待定待定B', '待定待定C','加绿AA', '改绿AA', '绿改AA', '纯绿AA',
'间谍过家家:处女', '我的武林大侠母亲和冷艳', '救母?弑母', '黑人', '洋人小鬼', '肥猪','高冷的丝袜女总裁妈妈被混','我种的因,女',
];
// 白名单:包含这些词的帖子即使命中黑名单也会保留
const WHITELIST = [
'无绿', '非绿文'
];
// ======================================
// 核心过滤逻辑 (无需修改)
// ======================================
function filterTitles() {
document.querySelectorAll(`
ul.category_newlist li a,
.replaybox li a,
.hottiebox li a,
.goodtiebox li a
`).forEach(titleLink => {
const text = titleLink.textContent.toLowerCase();
const hasBlack = BLACKLIST.some(kw =>
text.includes(kw.toLowerCase())
);
const hasWhite = WHITELIST.some(w =>
text.includes(w.toLowerCase())
);
if (hasBlack && !hasWhite) {
titleLink.closest('li').style.display = 'none';
}
});
}
// ======================================
// 动态加载监听
// ======================================
new MutationObserver(() => {
setTimeout(filterTitles, 300);
}).observe(document.body, {
childList: true,
subtree: true
});
// 初始执行
window.addEventListener('load', () => {
setTimeout(filterTitles, 1500);
});
})();