zshall / Vote to Grow

// ==UserScript==
// @name         Vote to Grow
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  automatically click Grow every 10000 milliseconds
// @author       zshall
// @match        https://www.reddit.com/robin
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Click the robin "grow" button every 10,000 milliseconds and display a message in the console
    setInterval(function() {
        console.log('voting to grow!');
        $('.robin-chat--vote-increase').click();
    }, 10000);
})();