// ==UserScript== // @name Robin Voter // @namespace flyinglamer // @author /u/flyinglamer // @description Robin auto voter // @include https://www.reddit.com/robin // @version 1 // @grant none // ==/UserScript== console.log('Hello LeCrushinator! Do you see this ?'); function clickVote() { if ($ && $('.robin-chat--vote-increase').length > 0) { console.log('voting'); $('.robin-chat--vote-increase').click(); } else { setTimeout(clickVote, 2000); } } setTimeout(clickVote, 2000);