Advertisement
KBOE2

LSS-User-ID

Sep 25th, 2017
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         LSS-User-ID
  3. // @version      1.0
  4. // @description  Die eigene User-ID wird oben rechts angezeigt
  5. // @author       KBOE2
  6. // @include      https://www.leitstellenspiel.de/*
  7. // @grant        none
  8. // ==/UserScript==
  9.  
  10. var profil = document.getElementById("navbar_profile_link").href;
  11. ID = profil.replace("https://www.leitstellenspiel.de/profile/","");
  12.  
  13. function lightbox_open() {
  14.     lightboxOpen();
  15. }
  16.  
  17. $(".nav.navbar-nav.navbar-right").append(`<li><a class="lightbox-open" onclick="lightbox_open()"  href="` + profil + `">` + ID + `</a></li>`);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement