Skip to content

Instantly share code, notes, and snippets.

@alixti
Last active March 10, 2026 12:28
Show Gist options
  • Select an option

  • Save alixti/298cb04bd3efb7f2e3301a0e3cbefa28 to your computer and use it in GitHub Desktop.

Select an option

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
// ==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