https://ouo.io/7vhQNl
目前為
// ==UserScript==
// @name stockenz.com : Auto Claim
// @namespace stockenz.com.auto.claim
// @version 1.2
// @description https://ouo.io/7vhQNl
// @author stealtosvra
// @match https://stockenz.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=stockenz.com
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function navigateToRandomUrl() {
const urls = ['https://ouo.io/h4GudS', 'https://short.dash-free.com/D4IWMYj', 'https://link1s.com/k3vrWnBu'];
const randomIndex = Math.floor(Math.random() * urls.length);
const randomUrl = urls[randomIndex];
function reloadPage() {window.location.href = randomUrl;}
setTimeout(reloadPage, 300000);}
setInterval(function() {
function hCaptcha() {return typeof grecaptcha !== 'undefined' && grecaptcha.getResponse().length !== 0;}
if (hCaptcha()) {const button = document.querySelector(".button");
if (button) {button.click();}}}, 5000);
})();