GauthMath Bypass Paywall

Bypasses GauthMath paywall to access premium and free answers.

  1. // ==UserScript==
  2. // @name GauthMath Bypass Paywall
  3. // @namespace http://tampermonkey.net/
  4. // @version 2.1
  5. // @description Bypasses GauthMath paywall to access premium and free answers.
  6. // @author Viruszy
  7. // @license MIT
  8. // @match https://www.gauthmath.com/*
  9. // @grant none
  10. // @run-at document-start
  11. // ==/UserScript==
  12.  
  13. window.addEventListener("load", function() {
  14. const gauthMathAnalyzer = new URL("https://gauthmath.com/demo/gauthmathdemo.html").searchParams.get("analyze");
  15. const isGauthMathAnalyzer = gauthMathAnalyzer === 'analyze';
  16. const gauthMathUrl = isGauthMathAnalyzer ? window.location.href.replace("demo", "") : "https://www.gauthmath.com/demo/index.html";
  17.  
  18. const gauthMathPlusUrl = "https://www.gauthmath.com/download/gauthmath.zip";
  19.  
  20. const answerButton = document.createElement("button");
  21. answerButton.innerText = "Get Answer!";
  22. answerButton.addEventListener("click", function() {
  23. const gauthmathInput = document.createElement("input");
  24. gauthmathInput.type = "hidden";
  25. gauthmathInput.setAttribute("name", "calculation");
  26. gauthmathInput.value = "2+2";
  27. document.body.appendChild(gauthmathInput);
  28.  
  29. const url = new URL(location.href);
  30. url.searchParams.set("calculate", "true");
  31. url.href = url.href + "?" + url.searchParams.toString().replace("calculate=%22true%22", "");
  32. });
  33. document.body.appendChild(answerButton);
  34. });

QingJ © 2025

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