mwfiae / Busy No Upvote

// ==UserScript==
// @name         Busy No Upvote
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over busy.org!
// @author       MWFIAE
// @match        https://busy.org/*
// @grant        none
// @require http://code.jquery.com/jquery-1.12.4.min.js
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    console.log("Busy No Upvote");
    $(document).ready(function(){
        setInterval(function(){
            $(".has-success .ant-checkbox-checked .ant-checkbox-input").click();
        }, 1000);


    });
})();