Greasy Fork is available in English.

hackshort.me (auto)

autoclick in Hack Short.me

// ==UserScript==
// @name         hackshort.me (auto)
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  autoclick in Hack Short.me
// @author       You
// @match        https://hackshort.me/*
// @icon         https://www.google.com/s2/favicons?domain=hackshort.me
// @grant        none
// ==/UserScript==

(function() {
'use strict';

setTimeout(function (){
parent.parent.document.getElementById("contador").click();
parent.document.getElementById("contador").click();
document.getElementById("contador").click();
}
,1200);

})();