HWM Armory Framework

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

Version vom 10.01.2023. Aktuellste Version

Dieses Skript sollte nicht direkt installiert werden. Es handelt sich hier um eine Bibliothek für andere Skripte, welche über folgenden Befehl in den Metadaten eines Skriptes eingebunden wird // @require https://update.greasyforks.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;
    }
}
长期地址
遇到问题?请前往 GitHub 提 Issues。