Last active: 2 years ago
https://steamcommunity.com/tradeoffer
const clickEvent = document.createEvent('MouseEvents');
clickEvent.initEvent('dblclick', true, true);
document.querySelectorAll('.inventory_page').forEach((item) => {
for (const i of item.children) {
for (const j of i.children) {
j.dispatchEvent(clickEvent);
}
}
});