FollowAll (LincesX)

Seguir a usuarios recomendados por el MI de LincesX

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name FollowAll (LincesX)
// @namespace https://greasyfork.org/en/users/243179-kchamat
// @version 0.11
// @description Seguir a usuarios recomendados por el MI de LincesX
// @author Autofollow by @kchamat based on @Cazador4ever CazaTools
// @match http*://lincesx.ga/mi/*
// @include http*://lincesx.ga/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(){
$(".zebrea").children(".floatR").children(".boto.gris").click();
}
seguir();

setTimeout(function() {
location.reload();
}, 1000);
//ocultar("div#mydialog");
ocultar("div#mask");
})(jQuery);