Free GauthMath Answers

Unlimited answers!

目前为 2024-02-20 提交的版本。查看 最新版本

// ==UserScript==
// @name         Free GauthMath Answers
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Unlimited answers!
// @author       Viruszy
// @match        https://www.gauthmath.com/*
// @icon         A drawing of the human brain
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Define onSubmitAnswer function to unlock unlimited answers
    function onSubmitAnswer(event) {
        event.preventDefault();
        event.stopPropagation();
        // Add your logic here to handle answer submission, if needed
        // This function prevents the default behavior of the answer submission button
        // You can add additional logic to handle answer submission as per your requirements
    }

    // Override any restrictions on answer limits
    window.onload = function() {
        // Find the answer limit element
        var answerLimitElement = document.querySelector('.answer-limit');

        // Check if the element exists
        if (answerLimitElement) {
            // Set the answer limit to a high value or remove it altogether
            answerLimitElement.innerHTML = 'Unlimited';

            // Remove any event listeners that may prevent further answers
            document.querySelectorAll('.submit-answer-btn').forEach(function(button) {
                button.removeEventListener('click', onSubmitAnswer);
                button.addEventListener('click', onSubmitAnswer); // Add onSubmitAnswer as the click event handler
            });

            // Optional: Hide any messages or pop-ups indicating answer limits
            var limitMessage = document.querySelector('.answer-limit-message');
            if (limitMessage) {
                limitMessage.style.display = 'none';
            }
        }
    };
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址