您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Claims bonus on https://www.freenanofaucet.com/ every 10 minutes
// ==UserScript== // @name Redeem Nanotoken ever 10 minutes // @description Claims bonus on https://www.freenanofaucet.com/ every 10 minutes // @description Claim more free money in Crypto with my other scripts : ) // @description https://greasyfork.org/de/scripts/410211-000-12-page-multi-faucet-roller/code // @author Dauersendung // @namespace https://greasyfork.org/de/users/444902-dauersendung // @version 1.2 // @match https://www.freenanofaucet.com/* // @grant none // ==/UserScript== var count_min = 1; window.onload = function loadpage(){ console.log(document.readyState); setTimeout(function(){ document.getElementById("getNano").click(); }, random(1500,2500)); setInterval(function(){ console.log("Status: Elapsed time " + count_min + " minutes"); count_min = count_min + 1; }, 60000); setTimeout(function(){ window.location.assign("https://www.freenanofaucet.com/"); }, random(90000,100000)); setInterval(function(){ document.getElementById("getNano").click(); }, random(722000,725000)); }; function random(min,max){ return min + (max - min) * Math.random(); }