// ==UserScript== // @name TWHelp Link // @namespace http://tampermonkey.net/ // @version 1.2 // @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 https://update.greasyfork.icu/scripts/419771/TWHelp%20Link.user.js // @updateURL https://update.greasyfork.icu/scripts/419771/TWHelp%20Link.meta.js // ==/UserScript== if (window.location.href.includes('info_player')) $("table:contains('Akta gracza')").last().append(`TWHelp`) if (window.location.href.includes('info_ally')) $("table:contains('Właściwości')").last().append(`TWHelp`)