您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to take over the world!
// ==UserScript== // @name Likea_en_diferido (reload110) // @namespace https://greasyfork.org/es/users/243179-kchamat // @version 0.1 // @description try to take over the world! // @author You // @match http://hardworld.xyz/mi/* // @grant none // ==/UserScript== (function() { 'use strict'; $(".likeli").parent('.vctip').wrap('<a href=# class="cajita"></a>'); $(".cajita").prepend("<input type='checkbox' name='agenda' value='1' class='agenda'>"); $( ".agenda" ).click(function() { $( this ).nextAll(".vctip:first").css( "margin-bottom","7" ); $( this ).nextAll(".vctip:first").children(".likeli").addClass("agendau"); }); //likea de a uno cada 25 seg (7seg-5min desde la carga) var ichu=0 for (ichu = 0; ichu < 15 ; ichu++) { setTimeout(function() { if ($(".likeli.agendau:first").length ) { $( ".likeli.agendau:first" ).click(); new Audio('https://www.soundjay.com/button/sounds/button-30.mp3').play(); } }, 7000+ichu*25500); } //oculta la mascara y el mensaje de advertencia function ocultar(objeto){ var styles = objeto+'{display:none; margin-top:7000px; height=0px; }'; var styleSheet = document.createElement("style"); styleSheet.type = "text/css"; styleSheet.innerText = styles; document.head.appendChild(styleSheet) } setTimeout(function() { ocultar("div#mydialog"); ocultar("div#mask"); ocultar("div#loading"); }, 500); })(jQuery);