// ==UserScript== // @name 查看评分 // @version 0.1.0 // @include https://www.mcbbs.net/pinfen // @author xmdhs // @description 查看评分。 // @namespace xmdhs.top // @downloadURL none // ==/UserScript== (async function () { await fetch(`https://www.mcbbs.net/?new=no&mobile=no`) document.write(` 查看评分

主页

总之懒得换了,就这样吧

在下面那个框中输入 uid,然后回车

`) document.close(); var t; window.onload = () => { let f = document.getElementById("form"); f.addEventListener("submit", function (event) { event.preventDefault(); if (!t) { t = true; Form(() => { t = false; }); } else { alert("一次只能查询一个用户") } }) } })();