您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Finds and solves captchas if botting and solves them.
// ==UserScript== // @name Captcha Solver for NitroType/NitroMath // @namespace https://singdev.wixsite.com/sing-developments // @version 0.1 // @description Finds and solves captchas if botting and solves them. // @author You // @match https://www.nitrotype.com/* // @match https://www.nitromath.com/* // @grant GM_xmlhttpRequest // ==/UserScript== (function() { 'use strict'; // Your CaptchaAI API key const captchaApiKey = '96004159c29dec0535a846099332d4d2'; // Function to find and solve captcha function solveCaptcha() { // Replace the following with your actual logic to find the captcha element const captchaElement = document.getElementById('captcha'); // Replace 'captcha' with the actual ID or selector if (captchaElement) { // Replace the following with your actual logic to extract captcha data const captchaData = captchaElement.getAttribute('data-captcha'); // Replace 'data-captcha' with the actual attribute // Make a request to CaptchaAI API GM_xmlhttpRequest({ method: 'POST', url: 'https://ocr.captchaai.com/in.php', data: `key=${captchaApiKey}&captchaData=${captchaData}`, // Adjust parameters as needed headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, onload: function(response) { // Handle the API response and extract the captcha solution const captchaSolution = '...'; // Extract from the response // Replace the following with your actual logic to fill in the captcha captchaElement.value = captchaSolution; // After solving the captcha, you might want to submit the form or perform other actions // Replace the following with your actual logic const formElement = captchaElement.closest('form'); if (formElement) { formElement.submit(); } }, }); } else { console.log('Captcha element not found.'); } } // Trigger the captcha-solving function solveCaptcha(); })();