Auto Captcha
// ==UserScript==
// @name Altcha Captcha Solver
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Auto Captcha
// @author Shnethan
// @match https://wheelofgold.com/*
// @icon https://wheelofgold.com/assets/images/favicon.ico
// @license © Shnethan
// @grant none
// @run-at document-idle
// ==/UserScript==
/*
* Copyright (c) 2026 Shnethan . All rights reserved.
* Only works on this site.
*/
(function() {
'use strict';
var o = new MutationObserver(function() {
var e = document.querySelector('.altcha-label');
if (e) { e.click(); o.disconnect(); }
});
o.observe(document.body, { childList: true, subtree: true });
setTimeout(function() { o.disconnect(); }, 5000);
})();