Title: TV.com Script: Vote Up Star Wars: The Clone Wars Author: Anonymous Pastebin link: http://pastebin.com/Qcp8Fzrj First Edit: Monday 10th of December 2012 10:07:56 PM CDT Last Edit: Monday 10th of December 2012 10:07:56 PM CDT // ==UserScript== // @name TVGuideRig_StarWars // @namespace tvrig // @include http://www.tv.com/lists/SpecialFeatures:list:best-animated-series/widget/poll/* // @version 2.2 // ==/UserScript==   //default speed is 1 second between votes var speed=1000;   if( window.location.search.indexOf('speed=') == -1 ) {         speed = parseInt(prompt('Confirm this dialog to start script\n\nHow fast should this autism fest run at?\n(Lower is faster)', speed));         window.location.href = window.location.href + (window.location.href.indexOf('?')==-1 ? '?' : '&') + 'speed=' + speed; } else {         function getQueryVariable(variable)         {                 var query = window.location.search.substring(1), vars = query.split('&');                 for (var i=0;i') + 1) + 'Successful Posts: '+ ++count + ' - Attempts '+ ++attempts;                 }         }         var count=0, attempts=0, idleNum=0, idleTotal=10, t = [].slice.call(document.getElementsByClassName('title'))[0];         speed = parseInt(getQueryVariable('speed'));         speed = !speed ? 1000 : speed < 100 ? 100 : speed > 100000 ? 100000 : speed;           window.setInterval(spamVotes, speed); }