您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
crypto mining game
// ==UserScript== // @name cryptomininggame // @namespace crypto mining game // @version 1.0 // @author sCamuh // @description crypto mining game // @match https://cryptomininggame.com/* // ==/UserScript== const email = ''; const password = ''; let loginform = document.getElementsByClassName('form-horizontal'); setTimeout(function() { 'use strict'; if (document.querySelector("#main_menu_main_wrapper > div:nth-child(2) > button") && !location.href.includes('login')) { //location.href = '/?login=true'; document.querySelector("#main_menu_main_wrapper > div:nth-child(2) > button").click(); AutoLogin(); } if (location.href.includes('login')) { AutoLogin();} if (document.querySelector("div.dailyBonusCard.pickable")) { document.querySelector("div.dailyBonusCard.pickable").click(); } if (document.querySelector("#form_mine_tronz > button") && document.querySelector("#form_mine_tronz > button").textContent.includes('MINE')) { document.querySelector("#form_mine_tronz > button").click(); } if (document.querySelector(".alert-success") && document.querySelector(".alert-success").textContent.includes('mine')) { location.href = 'boost'; } if (location.href.includes('boost')) { if ($("button:contains('free')").length > 0) { $("button:contains('free')").click(); } else location.href = 'jobs'; } if ($("button:contains(' Get paid')").length > 0) { for (const g of $("button:contains(' Get paid')")) { g.click(); } } if (location.href.includes('jobs')) { if (document.querySelector("#job_crystal_start_form").getAttribute('class') == 'row') { document.querySelector("#job_crystal_energy").value = '170'; document.querySelector("#job_cryptocurrency_energy").value = '170'; document.querySelector("#currencyJobChoice").selectedIndex = 8; document.querySelector("#currencyJobChoice").dispatchEvent(new Event('change')); for (const s of $("button:contains(' START')")) { s.click(); } } else location.href = 'quests'; } if (location.href.includes('quests') && document.querySelector("#btn_user_ptv")) { if (document.querySelectorAll(".animated.pulse.infinite").length > 0) { $("button:contains(' CLAIM')").click(); } else { document.querySelector("#btn_user_ptv").click(); setTimeout(() => {if ($('#modalPTV').css('display') === 'block') {$("[class='rewardDetail pickable ']").click()}},5e3); window.close(); } } },1e3); // Auto Login function AutoLogin() { let inputs = loginform[0].getElementsByTagName("input"); let button = loginform[0].getElementsByTagName("button")[0]; inputs[1].value = email; inputs[2].value = password; inputs[3].click(); document.querySelector("#captchatype").selectedIndex = 1; document.querySelector("#captchatype").dispatchEvent(new Event('change')); setInterval(() => {if (grecaptcha.getResponse().length > 0) {button.click()}},7e3); }