Last active
March 10, 2026 12:28
-
-
Save alixti/298cb04bd3efb7f2e3301a0e3cbefa28 to your computer and use it in GitHub Desktop.
Fixes Steam "Buy remaining cards on the Market" and "Sell these cards on the Market" Error screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Steamstatic Market Error Fix | |
| // @namespace Violentmonkey Scripts | |
| // @match https://community.fastly.steamstatic.com/market/multibuy* | |
| // @match https://community.fastly.steamstatic.com/market/multisell* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Alixti | |
| // @description Fixes Steam "Buy remaining cards on the Market" and "Sell these cards on the Market" Error screen | |
| // @run-at document-start | |
| // @homepageURL https://gist.github.com/alixti/298cb04bd3efb7f2e3301a0e3cbefa28 | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| const path = window.location.pathname; | |
| const params = window.location.search; | |
| const newURL = "https://steamcommunity.com" + path + params; | |
| window.location.replace(newURL); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment