您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Just type in the captcha math and press enter
// ==UserScript== // @name Pissmail Captcha Simplifier // @version 1.0 // @description Just type in the captcha math and press enter // @match https://pissmail.com/login.php // @namespace sylvie.moe/soup-spooner // @license MPL-2.0 // ==/UserScript== console.log("Soup-Spooner 5000 Commencing…"); window.addEventListener("load", () => { const input = document.querySelector("input[name='captcha']"); const ok = document.querySelector("a.ok"); input.addEventListener("keyup", ev => { if(ev.keyCode == 13){ input.value = eval(input.value); ok.click(); } }); });