You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// default settings...// ...// @match http://202.38.93.111:10047/xcaptcha// ...(function(){'use strict';// Your code here...letbtn=document.getElementById("submit")// calsulate the first oneletnums=document.querySelector("body > div > form > div:nth-child(1) > label").innerHTML.split(" ")[0].split("+")letsum=(BigInt(nums[0])+BigInt(nums[1])).toString()document.querySelector("#captcha1").value=sum// secondnums=document.querySelector("body > div > form > div:nth-child(2) > label").innerHTML.split(" ")[0].split("+")sum=(BigInt(nums[0])+BigInt(nums[1])).toString()document.querySelector("#captcha2").value=sum// thirdnums=document.querySelector("body > div > form > div:nth-child(3) > label").innerHTML.split(" ")[0].split("+")sum=(BigInt(nums[0])+BigInt(nums[1])).toString()document.querySelector("#captcha3").value=sumbtn.click()})();
The text was updated successfully, but these errors were encountered:
create a tampermonkey script and enable it.
The text was updated successfully, but these errors were encountered: