Skip to content

Instantly share code, notes, and snippets.

@LeoVerto
Last active April 1, 2016 23:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeoVerto/09bd7a82cb3e2e09b3d24ef0a65e8b1c to your computer and use it in GitHub Desktop.
Save LeoVerto/09bd7a82cb3e2e09b3d24ef0a65e8b1c to your computer and use it in GitHub Desktop.
Userscript for automatically voting "Growth" on reddit robin
// ==UserScript==
// @name Robin Auto-Growth
// @namespace com.github.leoverto
// @include https://www.reddit.com/robin/
// @version 1
// @grant none
// ==/UserScript==
setTimeout(function () {
document.getElementsByClassName("robin--vote-class--increase")[0].click();
console.log("WE SHALL GROW!");
}, 10000);
@LeoVerto
Copy link
Author

LeoVerto commented Apr 1, 2016

Install Greasemonkey for Firefox or Tampermonkey for Chrome to use this userscript.
Opera has built-in userscript support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment