Skip to content

Instantly share code, notes, and snippets.

@LeoVerto
Last active April 1, 2016 19:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LeoVerto/b854cebba93f135db1176172b4e634c7 to your computer and use it in GitHub Desktop.
Save LeoVerto/b854cebba93f135db1176172b4e634c7 to your computer and use it in GitHub Desktop.
Slightly modified userscript with built-in REMEMBER TURLEY
// ==UserScript==
// @name Robin Auto-Growth & Remember Turley
// @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();
document.getElementsByClassName("text-counter-input")[0].value = "REMEMBER TURLEY!";
document.getElementById("robinSendMessage").submit();
console.log("REMEMBER TURLEY!");
}, 10000);
@LeoVerto
Copy link
Author

LeoVerto commented Apr 1, 2016

This userscript waits ten seconds after being loaded, votes GROWTH and sends "REMEMBER TURLEY!" once.
It does not spam.

To use this, 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