NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Robin Autogrow
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Automatically click the "GROW" button in the reddit robin chat rooms
// @author neotek
// @match https://www.reddit.com/robin/
// @grant none
// ==/UserScript==
/* jshint -W097 */
'use strict';
var clickTimer = setInterval(function() { $('.robin--vote-class--increase').click(); },1000);