TWHelp Link

Skrypt dodaje link do TWHelp (https://pl.tribalwarshelp.com) w profilu gracza oraz plemienia

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램을 설치해야 합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==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
// ==/UserScript==

if (window.location.href.includes('info_player')) $("table:contains('Akta gracza')").last().append(`<tr><td colspan='2'><a href='${$("table:contains('Akta gracza')").last().find('tr').last().find('a').first().attr('href').replace('http://www.twstats.com/in','https://pl.tribalwarshelp.com/server')}' target='_blank'>TWHelp</a></td></tr>`)
if (window.location.href.includes('info_ally')) $("table:contains('Właściwości')").last().append(`<tr><td colspan='2'><a href='${$("table:contains('Właściwości')").last().find('tr').not(":last").last().find('a').first().attr('href').replace('http://www.twstats.com/in','https://pl.tribalwarshelp.com/server')}' target='_blank'>TWHelp</a></td></tr>`)