您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Script automatizado para bots de Click Bot de telegram.
当前为
// ==UserScript== // @name Click cripto (Bot) // @icon https://scdn.dogeclick.com/images/apple-icon-57x57.png // @version 0.1 // @namespace https://greasyfork.org/users/592063 // @description Script automatizado para bots de Click Bot de telegram. // @author wuniversales // @include https://dogeclick.com/* // @require https://cdn.jsdelivr.net/npm/jquery@3/dist/jquery.min.js // @require https://greasyfork.org/scripts/37236-monkeyconfig/code/MonkeyConfig.js // @grant GM_Config // @grant GM_getValue // @grant GM_setValue // @grant GM_addStyle // @grant GM_registerMenuCommand // ==/UserScript== var cfg = new MonkeyConfig({ title: 'Configuración', menuCommand: true, params: { Eliminar_tiempo_de_espera: { type: 'checkbox', default: true }, Autocerrar_publicidad: { type: 'checkbox', default: true }, } }); var etde=cfg.get('Eliminar_tiempo_de_espera'); var acp=cfg.get('Autocerrar_publicidada'); (function() { 'use strict'; var locationsite=window.location.pathname; var site1=locationsite.indexOf("/visit"); if(site1==0){ var token=$("div#headbar").attr("data-token"); var codigo=$("div#headbar").attr("data-code"); var espera=$("div#headbar").attr("data-timer"); if(etde==true){ $.post("https://dogeclick.com/reward",{code:codigo,token:token}); if(acp==true){ window.close(); } } function sleep(milliseconds) {const date = Date.now();let currentDate = null;do {currentDate = Date.now();} while (currentDate - date < milliseconds);} sleep(parseInt(espera+'000')); if(acp==true){ window.close(); } } })();