Greasy Fork is available in English.

HWM Armory Framework

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

目前为 2023-01-10 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @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;
    }
}