Get the id

just give me the fucking ID

Tính đến 18-06-2017. Xem phiên bản mới nhất.

// ==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);
        })();