FAST SELL STEAM

Fast sell Steam items with current price

目前为 2014-11-01 提交的版本。查看 最新版本

// ==UserScript==
// @name FAST SELL STEAM
// @include  http*://steamcommunity.com/profiles/*/inventory/*
// @include  http*://steamcommunity.com/id/*/inventory/*
// @description Fast sell Steam items with current price
// @version 0.11
// @namespace https://gf.qytechs.cn/users/6507
// ==/UserScript==
// 
// 
// 
(function (window, undefined) {  
    var w;
    if (typeof unsafeWindow != undefined) {
        w = unsafeWindow
    } else {
        w = window;
    }

    if (w.self != w.top) {
        return;
    }
	

	document.addEventListener('DOMContentLoaded', function() {

	jQuery(document).ready(function($) { 
		$('.item_desc_content').append('<a style="background: linear-gradient(to bottom, rgba(33,101,138,1) 5%,rgba(23,67,92,1) 95%)"class="item_market_action_button_contents item_market_action_button fs" href="#">FAST SELL</a>');
		$('.fs').on('click', sellOne);
	});





}, false);


	

	

})(window);

		
function sellOne() {
	

	
var inf = document.getElementById('iteminfo0_item_market_actions').innerHTML;

expr = /(\d+\.\d+)/;
price = expr.exec(inf);
price = price[1];



SellCurrentSelection();
document.getElementById('market_sell_buyercurrency_input').value = price;
SellItemDialog.OnBuyerPriceInputKeyUp();
document.getElementById("market_sell_dialog_accept_ssa").checked = true;
document.getElementById("market_sell_dialog_accept").click();


document.getElementById("market_sell_dialog_ok").click();
}





QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址