Greasy Fork is available in English.

HWM Armory Framework

Хелпер для других скриптов склада

As of 10.01.2023. See ბოლო ვერსია.

ეს სკრიპტი არ უნდა იყოს პირდაპირ დაინსტალირებული. ეს ბიბლიოთეკაა, სხვა სკრიპტებისთვის უნდა ჩართეთ მეტა-დირექტივაში // @require https://update.greasyfork.org/scripts/457946/1136773/HWM%20Armory%20Framework.js.

// ==UserScript==
// @name          HWM Armory Framework
// @namespace     https://github.com/bonArt0/hwm_scripts
// @version       1.0
// @description   Хелпер для других скриптов склада
// @author        bonArt
// @license       GPL-3.0-only
// @icon          https://dcdn.heroeswm.ru/i/btns/job_fl_btn_warehouse.png
// @include       http://*.heroeswm.ru/sklad_info.php?*
// @include       http://178.248.235.15/sklad_info.php?*
// @include       http://www.lordswm.com/sklad_info.php?*
// @include       http://my.lordswm.com/sklad_info.php?*
// @supportURL    https://www.heroeswm.ru/sms-create.php?mailto_id=117282
// @encoding 	  utf-8
// ==/UserScript==

const sda = findArtsListBlock();
if (sda) {
    console.log('something right');
} else {
    console.log('something wrong');
}

function findArtsListBlock() {
    let currentBlock = Array.from(document.getElementsByTagName('center')).pop();
    if (!currentBlock) {
        return undefined;
    }
}