您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bypasses GauthMath paywall to access premium and free answers.
// ==UserScript== // @name GauthMath Bypass Paywall // @namespace http://tampermonkey.net/ // @version 2.1 // @description Bypasses GauthMath paywall to access premium and free answers. // @author Viruszy // @license MIT // @match https://www.gauthmath.com/* // @grant none // @run-at document-start // ==/UserScript== window.addEventListener("load", function() { const gauthMathAnalyzer = new URL("https://gauthmath.com/demo/gauthmathdemo.html").searchParams.get("analyze"); const isGauthMathAnalyzer = gauthMathAnalyzer === 'analyze'; const gauthMathUrl = isGauthMathAnalyzer ? window.location.href.replace("demo", "") : "https://www.gauthmath.com/demo/index.html"; const gauthMathPlusUrl = "https://www.gauthmath.com/download/gauthmath.zip"; const answerButton = document.createElement("button"); answerButton.innerText = "Get Answer!"; answerButton.addEventListener("click", function() { const gauthmathInput = document.createElement("input"); gauthmathInput.type = "hidden"; gauthmathInput.setAttribute("name", "calculation"); gauthmathInput.value = "2+2"; document.body.appendChild(gauthmathInput); const url = new URL(location.href); url.searchParams.set("calculate", "true"); url.href = url.href + "?" + url.searchParams.toString().replace("calculate=%22true%22", ""); }); document.body.appendChild(answerButton); });
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址