// ==UserScript== // @name 妖火网屏蔽标题关键词 // @namespace 流失的梦 // @version 1 // @description Remove topics in Yaohuo that contains keywords: salary and love. // @author 流失的梦 // @match https://yaohuo.me/* // @match https://www.yaohuo.me/* // @grant none // @require https://cdn.bootcss.com/jquery/3.5.1/jquery.min.js // @license MIT // @downloadURL none // ==/UserScript== (function() { // 定义匹配关键字的正则表达式 const regex = /工资|爱情/; // 获取所有话题链接 const links = $('.listdata'); // 遍历每个链接,判断是否匹配关键字并执行移除 links.each((index, link) => { if (regex.test($(link).text())) { $(link).remove(); } }); })();