норм было бы если бы SIH полное количество предметов в стаке автоматические прописывал и продавал
// ==UserScript==
//
@Name Steam Auto Fill Quantity
//
@namespace http://tampermonkey.net/
// @version 0.2
// @description Automatically fill quantity in Steam market sell dialog
//
@Author You
// @match
https://steamcommunity.com/*
//
@GranT none
// ==/UserScript==
(function() {
'use strict';
// Observer to monitor the appearance of the sell dialog
const observer = new MutationObserver((mutations) => {
mutations.forEach((mutation) => {
if (mutation.type === 'childList') {
const sellDialog = document.getElementById('market_sell_dialog');
if (sellDialog && sellDialog.style.display !== 'none') {
const quantityInput = document.getElementById('market_sell_quantity_input');
const availableAmountElement = document.getElementById('market_sell_quantity_available_amt');
if (quantityInput && availableAmountElement) {
const availableAmountText = availableAmountElement.textContent.trim();
const availableAmount = parseInt(availableAmountText, 10);
if (!isNaN(availableAmount)) {
// Automatically fill the quantity input with the available amount
quantityInput.value = availableAmount;
}
}
}
}
});
});
// Start observing the body for changes
observer.observe(document.body, { childList: true, subtree: true });
})();