代码: 全选
const b = new Set([
'FoxMe','TheMatrix','verdelite','Caravel','B777','saibaster',
'wh','hahan','pathdream','Savage','VladPutin',
'YouHi','beijingren3','OckhamT1','lexian','sweetsister',
'赖美豪中','肚欲鸣','杨和柳','弃婴千枝','量子战士','朔方节度使', '海洋星辰',
]);
[
['ul.topics li.row div.list-inner span.username', 'li.row'],
['div.post dl.postprofile dt span.username', 'div.post'],
['blockquote cite a', 'blockquote']
].forEach(([q,p]) => {
document.querySelectorAll(q).forEach(a => {
if(b.has(a.textContent)) {
a.closest(p).style.display = 'none';
}
});
});