Skip to content

Instantly share code, notes, and snippets.

Created April 1, 2016 16:56
Show Gist options
  • Save anonymous/4dcdfe3eb60932227f977fec6076aae8 to your computer and use it in GitHub Desktop.
Save anonymous/4dcdfe3eb60932227f977fec6076aae8 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Robin Bot
// @version 1.0
// @description Make it grow!
// @match https://www.reddit.com/robin
// @grant none
// ==/UserScript==
(function(){
$('#robinSendMessage input[type=text]').val('/vote grow');
$('#robinSendMessage').submit();
setTimeout(arguments.callee, 60000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment