Show usernames instead of nicknames in the host panel's Bans list. Spoiler - click to reveal// ==UserScript==// @name LFSHosting_ShowUsersInBans// @namespace http://tampermonkey.net/// @version 0.1// @description Show usernames instead of nicknames in the Bans list.// @author Lakyn// @match https://www.lfs.net/hosting/admin/*/bans// @icon https://www.google.com/s2/favicons?sz=64&domain=lfs.net// @grant none// ==/UserScript==(function() { 'use strict'; var a = document.getElementsByClassName('UserLink'); for(let i=0; i < a.length; i++ ) if(a[i].title.length !== 0) a[i].innerText=a[i].title.substring(5);})();