// ==UserScript== // @name TWHelp Link // @namespace http://tampermonkey.net/ // @version 1.0 // @description Skrypt dodaje link do TWHelp (https://pl.tribalwarshelp.com) w profilu gracza oraz plemienia // @author PTS // @match https://*.plemiona.pl/game.php*screen=info_player* // @match https://*.plemiona.pl/game.php*screen=info_ally* // @grant none // @downloadURL none // ==/UserScript== if (window.location.href.includes('info_player')) $("#player_info").append(`TWHelp`) if (window.location.href.includes('info_ally')) $("table:contains('Właściwości')").last().append(`TWHelp`)