NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Steam auto agree for sales // @version 0.1 // @description Automatically checks the checkbox to SSA agreement when selling an item on Steam // @author SynTax // @match http://steamcommunity.com/id/* // @include https://steamcommunity.com/id/* // @grant none // ==/UserScript== try{ var agree = document.getElementById("market_sell_dialog_accept_ssa"); agree.checked = true; }catch(e){ console.log(e); }