您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
DonaldCoin Full Auto Claim / Explore Soon
当前为
// ==UserScript== // @name DonaldCoin Automation // @namespace https://donaldco.in // @version 1.6 // @description DonaldCoin Full Auto Claim / Explore Soon // @author Rubystance // @license MIT // @match https://donaldco.in/* // @grant none // ==/UserScript== (function () { 'use strict'; const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms)); const clickIfExists = (selector) => { const el = document.querySelector(selector); if (el) el.click(); }; const tryClickByImgSrc = (srcContains) => { const imgs = [...document.querySelectorAll('img')]; const match = imgs.find((img) => img.src.includes(srcContains)); if (match) match.click(); }; const goBack = () => { tryClickByImgSrc('templates/aurblue/images/back.png'); }; async function main() { const now = Date.now(); const lastWork = +localStorage.getItem('dc_lastWork') || 0; const lastCollect = +localStorage.getItem('dc_lastCollect') || 0; setTimeout(() => location.reload(), 60 * 1000); clickIfExists('a[href*="view=account&ac=daily-gift"]'); await delay(1000); tryClickByImgSrc('images/member/gift2.png'); await delay(1000); const selectedImg = document.getElementById('selectedimg2'); if (selectedImg) selectedImg.click(); await delay(3000); goBack(); await delay(1000); clickIfExists('a[href*="view=account&ac=btc-kickboys"]'); await delay(1000); goBack(); await delay(1000); clickIfExists('a[href*="view=account&ac=btc-coinbonus"]'); await delay(1000); goBack(); if (now - lastWork > 20 * 60 * 1000) { const workBtn = document.querySelector('a[href*="action=work"]'); if (workBtn) { workBtn.click(); localStorage.setItem('dc_lastWork', now); return; } } if (now - lastCollect > 30 * 60 * 1000) { const collectBtn = document.querySelector('a[href*="ac=btc-collect"]'); if (collectBtn) { collectBtn.click(); localStorage.setItem('dc_lastCollect', now); return; } } await delay(1000); const profileLink = document.querySelector('a[href="index.php?view=account&ac=btc-profile"]'); if (profileLink) profileLink.click(); } window.addEventListener('load', () => { setTimeout(main, 3000); }); })();