Title: [JavaScript] UntitledUntitledUntitledUntitledUntitledUntitledUntitledUnti Author: Anonymous Pastebin link: http://pastebin.com/r5hfZYin First Edit: Saturday 8th of December 2012 12:27:15 AM CDT Last Edit: Saturday 8th of December 2012 12:27:15 AM CDT // ==UserScript== // @name TVRigBreakingBad // @namespace tvrigBB // @include http://www.tv.com/lists/SpecialFeatures:list:best-overall-series/widget/poll/ // @version 1.0 // ==/UserScript==   //Breaking Bad var counter = 0; var html = document.getElementsByClassName("title"); var msg = { "vote_rate_limit": "3", 'list_id': 'SpecialFeatures:list:best-overall-series', 'id': 's:2469', 'a': 'a', 'v': '+1' }; function update() { unsafeWindow.ListUtils.publish(msg); counter = counter + 1; html[1].innerHTML = "Counter: "+counter; } window.setInterval(update,750);