您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Unlimited answers! Gauth Plus
当前为
// ==UserScript== // @name Free GauthMath Answers // @namespace http://tampermonkey.net/ // @version 0.7 // @description Unlimited answers! Gauth Plus // @author Viruszy // @match https://www.gauthmath.com/* // @icon A drawing of the human brain // @grant none // ==/UserScript== (function() { 'use strict'; // Function to provide free answers function provideFreeAnswers() { // Find the input field for the question const questionInputField = document.querySelector('input[name="question"]'); // Fill the input field with the answer questionInputField.value = "Your free answer goes here."; // Find and click the submit button const submitButton = document.querySelector('button[type="submit"]'); submitButton.click(); } // Function to enable Gauth Plus function enableGauthPlus() { // Find the Gauth Plus button const gauthPlusButton = document.querySelector('.gauth-plus-button'); // Click the Gauth Plus button to enable it if (gauthPlusButton) { gauthPlusButton.click(); } } // Provide free answers at regular intervals (in milliseconds) setInterval(provideFreeAnswers, 1000); // Enable Gauth Plus enableGauthPlus(); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址