FollowAll (LincesX)

Seguir a usuarios recomendados por el MI de LincesX

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey 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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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 (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);