File :-(, x, )
Anonymous
BTW: Here's a greasemonkey script to remove stupid "They hurt her" spam.

(function()
{
var allElements, thisElement;
allElements = document.evaluate(
'//TD[contains(., "They hurt her")]',
document,
null,
XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE,
null);
for (var i = 0; i < allElements.snapshotLength; i++) {
thisElement = allElements.snapshotItem(i);
thisElement.parentNode.removeChild(thisElement);

}
})();
>> Anonymous
doesn't work.
>> Anonymous
It does, but it works even better if you change the line that has //TD in it to

'//TD[contains(., "THEY HURT HER")]|//TD[contains(., "They hurt her")]|//blockquote[contains(., "THEY HURT HER")]|//blockquote[contains(., "They hurt her")]',
>> Anonymous
Thanks
>> Anonymous
>(function()
>{
>...
>})();
lol wut
>> Anonymous
Nice, thank you good sir.
>> Anonymous
how do i use this?