StumbleUpon Double-post v1.0

By Josh1billion Last update Oct 18, 2007 — Installed 223 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           StumbleUpon Double-post v1.0
// @author		Josh1billion
// @namespace      stumble_doublepost
// @description    This adds an extra form to the bottom of any StumbleUpon forum thread, where you can post a new post even if you've already posted the last post, allowing you to double-post.
// @include        http://*.group.stumbleupon.com/forum/*
// ==/UserScript==

var doublepost = document.createElement("div");
doublepost.innerHTML = "<center><font size='3'><b>Double-post</b></font><BR><form method=post action='#end'><tr><td class=bg colspan=4 align=center valign=top><table cellpadding=0 cellspacing=0><tr><td class=bg><table><tr><td align=center valign=top><td class=bg><textarea onkeyup='checkMaxLength(this, 6900)' id=posttext name=body rows=4 cols=75></textarea></td></tr><tr><td><td class=bg align=left><span style='float:right;'><input id='browser_info' name='browser_info' type='checkbox'/><label for='browser_info'>Include browser info</label></span><input type=submit class=bold value='Post'><br><br style='font-size:6px'></td></form></tr></table></tr></table></td></tr></table></td></tr></table></center>";
document.body.insertBefore(doublepost, document.body.lastChild);