Title: [JavaScript] // ==UserScript== // @name TVGuideRigMain // @namespace tvrig // @include htt Author: Anonymous Pastebin link: http://pastebin.com/6y3hBqL0 First Edit: Wednesday 12th of December 2012 12:13:25 AM CDT Last Edit: Wednesday 12th of December 2012 12:13:25 AM CDT // ==UserScript== // @name TVGuideRigMain // @namespace tvrig // @include http://www.tv.com/features/best-of-2012/votes/poll/SpecialFeatures:list:best-animated-series/* // @version 1 // ==/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'))[9];         speed = parseInt(getQueryVariable('speed'));         speed = !speed ? 1000 : speed < 100 ? 100 : speed > 100000 ? 100000 : speed;           if(!box)         {                 var box=document.createElement('div');                 box.style.border='1px solid';                 box.style.zIndex='20';                 box.style.backgroundColor='#FFF';                 box.style.position='fixed';                 box.style.padding='10px';                 box.style.borderRadius='8px';                 box.style.marginLeft='60px';                 box.style.right='35px';                 box.style.top='35px';                 document.body.appendChild(box);         }         window.setInterval(spamVotes, speed); }