Zum installieren bitte hier klicken
(Braucht natürlich genauso wie meine Sidebar ein installiertes Tampermonkey :) )
// ==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);
});
})();
Finde das ist keinen Utopian-Beitrag wert :)