Skip to content

Instantly share code, notes, and snippets.

@stewsters
Created April 1, 2016 19:47
Show Gist options
  • Save stewsters/4e60d449a593731b26496f5846dbc6a0 to your computer and use it in GitHub Desktop.
Save stewsters/4e60d449a593731b26496f5846dbc6a0 to your computer and use it in GitHub Desktop.
tampermonkey script to Click robin grow button every 2 seconds
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.reddit.com/robin/
// @grant none
// ==/UserScript==
(function() {
'use strict';
setInterval(function(){
$(".robin-chat--vote-increase").click();
console.log("clicked");
},2000);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment