吾爱破解论坛 最新列表中 去掉悬赏数据
// ==UserScript==
// @name 吾爱破解去除table中的悬赏数据
// @namespace http://www.xarr.cn/
// @version 0.3.2
// @description 吾爱破解论坛 最新列表中 去掉悬赏数据
// @author xarr
// @match *www.52pojie.cn/forum.php?mod=guide&view=newthread*
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
document.querySelectorAll('#threadlist .bm_c table tbody tr .icn a').forEach(item=>{
var title = item.getAttribute("title");
if(title == '悬赏 - 新窗口打开'){
item.parentNode.parentNode.parentNode.remove();
}
});
})();