Get the id

just give me the fucking ID

2017-06-18 일자. 최신 버전을 확인하세요.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Get the id
// @version      1.2
// @description  just give me the fucking ID
// @author       NDM
// @include      https://lol.moa.tw/summoner/show/*

// @exclude      http://igg-games.com/
// @exclude      http://igg-games.com/*/*

// @grant        unsafeWindow
// @namespace https://greasyfork.org/users/133598
// ==/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);
        })();