There are 2 previous versions of this script.
// ==UserScript==
// @name Reddit - downvote vote ups
// @namespace http://reddit.com
// @description Automatically downvotes upmod requests (+hide, +catch "raise your hand" pattern)
// @include http://reddit.com/*
// @include http://*.reddit.com/*
// @exclude http://reddit.com/user/*
// @exclude http://*.reddit.com/user/*
// @exclude http://reddit.com/info/*
// @exclude http://*.reddit.com/info/*
// ==/UserScript==
var rows;
var matches=0;
rows = document.evaluate("//*[@class='title']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
regex1 = /vote.up.if|up.vote.if|up.if|upmod.if|downvote.if|upmod|vote.up|upvote|upvote.if|downmod|down.vote.if|mod.if|vote.down|vote.up|down.vote|vote.down.if|raise.(your|a).hand|I'?m.sure.I.?('|wi)?ll.get.downmodd?ed/i;
for (var i = 0; i < rows.snapshotLength; i++) {
var row = rows.snapshotItem(i);
var text = row.childNodes[0].innerHTML;
if (regex1.exec(text)) {
var storyID = row.id.substr(9);
var downmod = /downmod/i;
var upmod = /upmod/i;
if (!downmod.exec(document.getElementById('down_'+storyID).className) && !upmod.exec(document.getElementById('up_'+storyID).className)) {
setTimeout("mod('"+storyID+"',0);",100);
setTimeout("Listing.hide('"+storyID+"');",200);
matches+=1;
}
}
}
if (matches > 0) {
var tbl = document.getElementById('siteTable'),
div = document.createElement('div'),
msg = 'Downvoted ' + matches + ' stories';
GM_log(msg);
if (!tbl) return;
div.innerHTML = '<p><i>' + msg + ' (Reddit Content Filter).</i></p>';
tbl.parentNode.insertBefore(div, tbl.nextSibling);
}