您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Seguir a usuarios recomendados por el MI de Reload110 hardworld.xyz
- // ==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(){
- // $(".zebrea").children(".floatR").children(".boto.gris").click();
- $(".zebrea:first").children(".floatR").children(".boto.gris").click();
- //$(".zebrea:first").prev().children(".floatR").children(".boto.gris").click();
- $(".zebrea:first").removeClass("zebrea");
- }
- var ichi;
- ichi=0;
- for (ichi = 0; ichi < 15 ; ichi++) {
- setTimeout(function() {
- seguir();
- }, ichi*21000);
- }
- setTimeout(function() {
- location.reload();
- }, 80000);
- //ocultar("div#mydialog");
- ocultar("div#mask");
- })(jQuery);