wartab_move

перемещение в 1 клик со страницы Бои за территории

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==UserScript==
// @name         wartab_move
// @namespace    http://tampermonkey.net/
// @version      0.1.2
// @description  перемещение в 1 клик со страницы Бои за территории
// @author       Something begins
// @license      none
// @match        https://www.heroeswm.ru/mapwars.php
// @icon         https://www.google.com/s2/favicons?sz=64&domain=heroeswm.ru
// @grant        none
// ==/UserScript==
const locIds = {
    "Empire Capital": 1,
    "East River": 2,
    "Tiger Lake": 3,
    "Rogues' Wood": 4,
    "Wolf Dale": 5,
    "Peaceful Camp": 6,
    "Lizard Lowland": 7,
    "Green Wood": 8,
    "Eagle Nest": 9,
    "Portal Ruins": 10,
    "Dragons' Caves": 11,
    "Shining Spring": 12,
    "Sunny City": 13,
    "Magma Mines": 14,
    "Bear Mountain": 15,
    "Fairy Trees": 16,
    "Harbour City": 17,
    "Mithril Coast": 18,
    "Great Wall": 19,
    "Titans' Valley": 20,
    "Fishing Village": 21,
    "Kingdom Castle": 22,
    "Ungovernable Steppe": 23,
    "Crystal Garden": 24,
    "East Island": 25,
    "The Wilderness": 26,
    "Sublime Arbor": 27
}

const allA = document.querySelectorAll("a");
const allMapA = Array.from(allA).filter(a => { return a.href.includes("map.php?cx=") });
console.log(allMapA);
for (const a of allMapA) {
    const font = a.querySelector("font");
    if (!font) continue;
    const areaName = font.textContent.split("-")[0].trim();
    // console.log(font.textContent);
    console.log("area id: ", locIds[areaName]);
    a.insertAdjacentHTML("afterend", `<a href = https://www.heroeswm.ru/move_sector.php?id=${locIds[areaName]}&rand=0.2654351550070957><img style = "width: 20px; height:20px" src = https://dcdn3.heroeswm.ru/i/combat/map/navigator_btn_horseman.png?ver=6></img></a>`)
        // https://dcdn3.heroeswm.ru/i/combat/map/navigator_btn_horseman.png?ver=6
}