您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Auto remove overpriced items
// ==UserScript== // @name Steam Inventory Helper - Addon // @namespace http://tampermonkey.net/ // @version 0.1.0.1 // @description Auto remove overpriced items // @author 0x01x02x03 // @match https://steamcommunity.com/market/ // @icon https://www.google.com/s2/favicons?sz=64&domain=steamcommunity.com // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function areOverpricedItems() { console.log("Checking if there are overpriced items"); let areItemForSell = document.body.querySelector('#my_market_selllistings_number').textContent; let overpriceds = document.body.querySelector('#tabContentsMyActiveMarketListingsTable > div:nth-child(4) > div > div:nth-child(3) > a.item_market_action_button.item_market_action_button_green > span.item_market_action_button_contents'); let removeOverpriceds = document.body.querySelector('#tabContentsMyActiveMarketListingsTable > div:nth-child(4) > div > div:nth-child(3) > a.btnControl > span'); if(areItemForSell > 0){ if (overpriceds != null) { overpriceds.click(); removeOverpriceds.click(); } setTimeout(areOverpricedItems, 5000); } } setTimeout(areOverpricedItems, 5000); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址