Хелпер для других скриптов склада
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-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;
}
}