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

主页

总之懒得弄界面,就这样吧

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

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