start_of_battle_btn_hwm

allows you to watch a replay of a battle from the beggining

// ==UserScript==
// @name         start_of_battle_btn_hwm
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  allows you to watch a replay of a battle from the beggining
// @author       Лосось
// @match        /^https{0,1}:\/\/((www|qrator|my)\.(heroeswm|lordswm)\.(ru|com)|178\.248\.235\.15)\/(pl_warlog).php*/
// @include      /^https{0,1}:\/\/((www|qrator|my)\.(heroeswm|lordswm)\.(ru|com)|178\.248\.235\.15)\/(pl_warlog).php*/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=lordswm.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    var queryParam = '?lt=-1&';

    var global_elem = document.getElementsByClassName('global_a_hover')[1];
    var list = global_elem.innerHTML.split('\n  ');
    list.shift();
    var links = [...global_elem.getElementsByTagName('a')];
    links = links.filter(el => !el.classList.contains('pi'));
    links = links.map(link => link.href);
    links = links.map(link => link.split('?'));
    links.map(link => link.splice(1, 0, queryParam));
    links = links.map(link => link.join(''));

    for (let i = 0; i < list.length; i++) {
       let btn = document.createElement('a');
       btn.innerHTML = `<a href=${links[i]} target='_blank'>###   </a>`;
       list[i] = btn.innerHTML + list[i];
    }

    global_elem.innerHTML = list.join('');

})();