|
|
|
|
|
by therealidiot
2697 days ago
|
|
Here's a crappy userscript that might help (function(shitlist) {
[].__proto__.forEach.call(document.querySelectorAll('table.itemlist tr.athing'), (n) => {
let s = n.querySelector('.sitestr');
if (s && shitlist.indexOf(s.textContent) !== -1) {
n.parentNode.removeChild(n.nextSibling);
n.parentNode.removeChild(n.nextSibling);
n.parentNode.removeChild(n);
}
})
})(["nytimes.com", "crapsite.com"]); |
|