您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto clique no próximo vídeo, clique automático na bolha e recarrega a página automaticamente com vídeos quebrados.
// ==UserScript== // @name eBonus.gg Pro // @namespace Daniel Fontenelle // @version 1.3 // @description Auto clique no próximo vídeo, clique automático na bolha e recarrega a página automaticamente com vídeos quebrados. // @author Daniel Fontenelle (FACEBOOK: https://www.facebook.com/danielll.fontenelle ) // @match https://ebonus.gg/earn-coins/watch // @grant none // ==/UserScript== setInterval(function() { window.location.reload(); }, 170000); $(document).ready(function(){ var coinsclicker = setInterval(function() { ClickNext(); ClickOnBubble(); }, 1000); window.ClickNext = function(){ if ($(".coins_popup").length > 0) { console.log("clicked"); $(".coins_popup").click(); } }; window.ClickOnBubble = function(){ if ($(".sweet-alert.showSweetAlert.visible").length > 0) { console.log("clicked"); $(".confirm").click(); } }; });