您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Script automatizado para bots de Click Bot de telegram.
// ==UserScript== // @name Click cripto (Bot) // @icon https://icons.duckduckgo.com/ip2/dogeclick.com.ico // @version 0.1.2 // @namespace https://greasyfork.org/users/592063 // @description Script automatizado para bots de Click Bot de telegram. // @author wuniversales // @include http*://dogeclick.com/* // @include http*://doge.click/* // @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: { Autocerrar_publicidad: { type: 'checkbox', default: true }, } }); var acp=cfg.get('Autocerrar_publicidad'); (function() { 'use strict'; function send_ajax(url,data) { var xhttp = new XMLHttpRequest(); xhttp.open("POST", url, true); xhttp.setRequestHeader("accept", "*/*"); xhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8"); xhttp.setRequestHeader("x-requested-with", "XMLHttpRequest"); xhttp.withCredentials = true; xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 200) { return this.responseText; } }; xhttp.send(data); } if(window.location.pathname.indexOf("/visit")>=0){ window.onload = function() { var token=document.querySelector("div#headbar").getAttribute("data-token"); var codigo=document.querySelector("div#headbar").getAttribute("data-code"); var espera=document.querySelector("div#headbar").getAttribute("data-timer"); setTimeout(function(){ send_ajax('https://doge.click/reward','code='+codigo+'&token='+token); if(acp){ window.close(); } },parseInt(espera+'000')); } } })();