autoclick grow
当前为
// ==UserScript==
// @name Reddit Robin Autoclick
// @namespace http://idonthaveone/
// @version 1.0
// @description autoclick grow
// @author m1k3245
// @match *.reddit.com/robin/*
// @grant none
// ==/UserScript==
/* jshint -W097 */
var jq = document.createElement('script');
jq.src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js";
document.getElementsByTagName('head')[0].appendChild(jq);
autoenter = setInterval(
function(){
if (document.getElementsbyClassName('.robin-home--thebutton').length > 0) {
$('.robin-home--thebutton').click()
}
else if (!$('.robin-chat--vote-increase.robin--vote-class--increase').hasClass("robin--active")) {
$('.robin-chat--vote-increase.robin--vote-class--increase').click()
}
},
60000);