just give me the fucking ID
当前为
// ==UserScript==
// @name Get the id
// @version 1.2.2
// @description just give me the fucking ID
// @author NDM
// @include https://lol.moa.tw/summoner/show/*
// @namespace https://greasyfork.org/zh-TW/scripts/30703-get-the-id
// @exclude http://lol.moa.tw/
// @grant unsafeWindow
// ==/UserScript==
(function() {
console.log(MoaObj.lol.acctId);
var NDMid = document.createElement("p");
NDMid.style.fontSize="40px";
NDMid.innerHTML= ": "+MoaObj.lol.acctId;
document.getElementById("content-body").appendChild(NDMid);
})();