NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name 9dm 自动填写验证码 // @version 0.1 // @description 9dm 自动填写验证码 // @author maokwen // @license MIT // @match http://www.9dmgamemod.com/ // @grant none // @require https://cdn.bootcss.com/jquery/3.4.1/jquery.min.js // ==/UserScript== (function () { 'use strict'; var dom = $("body > form > table > tbody > tr > td > table > tbody > tr > td > b"); if (dom.length == 0) return; var text = dom.text(); var exp = text.substring(0, text.length - 3); var ans = eval(exp); $("body > form > table > tbody > tr > td > table > tbody > tr > td > input[type=text]:nth-child(6)").val(ans); })();