Get the id

just give me the fucking ID

Från och med 2017-06-18. Se den senaste versionen.

// ==UserScript==
// @name         Get the id
// @version      1.0
// @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);
        })();