The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| // Paste this into your browser's dev console to automatically click "Grow" once a minute, and get notified in the console that it is working. | |
| setInterval(function () { | |
| document.getElementsByClassName("robin--vote-class--increase")[0].click(); | |
| console.log("you fake clicked the grow button"); | |
| }, 60000); |