NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name ST Button // @namespace http://tampermonkey.net/ // @license MIT // @version 1.0 // @description Put the steam trade button back to it's location // @author Agrass // @match https://www.steamgifts.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let btn=document.createElement("div"); btn.className="nav__button-container"; btn.innerHTML=`<div class="nav__button"><a href="https://www.steamtrades.com/">Trades</a></div>`; document.querySelector(".nav__left-container").insertBefore(btn,document.querySelector(".nav__button-container").nextSibling) })();