tampermonkey biggo 文字過瀘```

// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match <$URL$>
// @grant none
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js
// @grant GM_addStyle
// @include /biggo.com.tw
// ==/UserScript==

var $ = window.jQuery;

(function() {
‘use strict’;

// Your code here...  
// if(badDivs) {  
//    badDivs.parent().hide();  
//    badDivs.hide();  
// }  

var ds = $('.list-product-name.line-clamp-2 > a');  
let filter_arr = [  
    '體感',  
    '手把', '遊戲手把', '手柄', '矽膠', '橡膠', '按鈕', '桿帽',  
    '帽蓋', '蓋套', '保護套', '把蓋',  
    '電池', '插頭', '端口', '耳機插孔插座', '觸發器', '觸發', '折疊', '支架',  
    '集線器', '下載版', '美國代購', '簡易支架底座', '一起玩', '直立架',  
    '回收', '攜碼', '維修', 'Dock', '螺絲刀', '保護', '電源線', '充電', '皮膚', '面板', '按鍵條',  
    '插孔', '塵套', '耳機', '方向盤', '光纖', '收納架', '冷卻器', '防塵', '貼紙', '序號', '貼膜',  
    '雙肩包', '鐵盒', '中文', '傳感器', '收納包', '溫控風扇',  
];  

ds.each((t, v) => {  
    //console.log($(v).text(), $(v).text().includes(filter_arr));  

    filter_arr.forEach((item) => {  
        $(v).text().includes(item) ? $(v).parent().parent().parent().parent().parent().parent().remove() : '';  
    });  

    // $(v).css('background-color', 'red');  
});  

})();

$(document).ready(function() {

});