MU Storage

Selects you as default Target

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         MU Storage
// @version      2024-11-15v0.1
// @description  Selects you as default Target
// @author       ++
// @match        https://eclesiar.com/militaryunit/*
// @grant        none
// @require      https://code.jquery.com/jquery-3.7.1.min.js
// @namespace https://greasyfork.org/users/1397021
// ==/UserScript==

(function() {
    'use strict';
    let userID = $(".top-side-user > a:nth-child(1)")[0].href.replace("https://eclesiar.com/user/","")
    let targetSelector = $("#target-squad-selection")[0]
    for (let i = 0; i < targetSelector.length; i++) {
      let optionN = targetSelector.children[i]
      if (optionN.value == userID) {
          optionN.selected = "true"
      }
    }
})();