|
|
|
|
|
by thomassmith65
1454 days ago
|
|
I use this in ViolentMonkey for (let idiot of ['alice','bob','carol','dick','eve']){
for ( let a of document.querySelectorAll('a[href="user?id=' + idiot + '"]') ){
let node = a.parentNode.parentNode.parentNode.parentNode
if (node.tagName !== 'TABLE') { node.style.display = 'none' }
}
}
|
|