FollowAll (Reload110)

Seguir a usuarios recomendados por el MI de Reload110 hardworld.xyz

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name FollowAll (Reload110)
// @namespace https://greasyfork.org/en/users/243179-kchamat
// @version 0.11
// @description Seguir a usuarios recomendados por el MI de Reload110 hardworld.xyz 
// @author Autofollow by @kchamat based on @Cazador4ever CazaTools
// @match http*://hardworld.xyz/mi/*
// @include http*://hardworld.xyz/mi/
// @grant none
// ==/UserScript==

(function($) {
'use strict';
function ocultar(objeto){
var styles = objeto+'{display:none; margin-top:5000px; }';
var styleSheet = document.createElement("style");
styleSheet.type = "text/css";
styleSheet.innerText = styles;
document.head.appendChild(styleSheet)
}
function seguir(){
$(".boto.gris").click();
}
var ichi;
    ichi=0;
for (ichi = 0; ichi < 15 ; ichi++) {
setTimeout(function() {
seguir();
}, ichi*7000);
}
setTimeout(function() {
location.reload();
}, 65000);
ocultar("div#mydialog");
ocultar("div#mask");
})(jQuery);