您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make BTC Miner fast
// ==UserScript== // @name Fast BTC Miner👍 // @namespace Sign up now and leave it Mining // @match https://miningonebitcoin.com/* // @grant none // @version 1.1.0 // @icon https://www.google.com/s2/favicons?domain=miningonebitcoin.com // @author tomekmahrooq // @description Make BTC Miner fast // ==/UserScript== var delay = 10; countEarnings = function() { var totalProfit = 0.00000000; var balance = 0; var dps = document.getElementsByClassName('deposit_pb'); for (i in dps) { if (isNaN(parseInt(i))) continue; var amount = parseFloat(dps[i].getAttribute('data-amount')); if (isNaN(amount)) return; var compound = parseFloat(dps[i].getAttribute('data-compound')); if (isNaN(compound)) compound = 0; var percent = parseFloat(dps[i].getAttribute('data-percent')); if (isNaN(percent)) return; var duration = parseFloat(dps[i].getAttribute('data-duration')); if (isNaN(duration)) return; var last_pay = parseFloat(dps[i].getAttribute('data-last-pay')); if (isNaN(last_pay)) return; var totaltime = parseFloat(dps[i].getAttribute('data-totaltime')); if (isNaN(totaltime)) return; duration += delay * 10; if (totaltime > 0 && duration > totaltime) duration = totaltime; dps[i].setAttribute('data-duration', duration); var profit = (amount/100)*(duration/1000)*(percent/3600); totalProfit += profit; var profit1 = (amount/100)*((duration-last_pay)/1000)*(percent/3600); balance += profit1*(1-(compound/10)); } var obj = document.getElementById('total_profit'); if (obj) { obj.innerHTML = totalProfit.toFixed(13); } var obj = document.getElementById('total_balance'); if (obj) { obj.innerHTML = balance.toFixed(8); } setTimeout('countEarnings()', delay); };
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址