Created
April 1, 2016 16:56
-
-
Save anonymous/4dcdfe3eb60932227f977fec6076aae8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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