妖火网屏蔽标题关键词

Remove topics in Yaohuo that contains keywords: salary and love.

// ==UserScript==
// @name         妖火网屏蔽标题关键词
// @namespace    流失的梦
// @version      1.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
// ==/UserScript==

(function() {
    // 定义匹配关键字的正则表达式
    const regex = /工资|爱情/;

    // 获取所有话题链接
    const links = $('.listdata .topic-link');

    // 遍历每个链接,判断是否匹配关键字并执行移除
    links.each((index, link) => {
      if (regex.test($(link).text())) {
        $(link).parent('.listdata').remove();
     }
    });


})();