Last active
August 27, 2017 11:41
-
-
Save pilate/4d51836311c376966b99 to your computer and use it in GitHub Desktop.
This file contains 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== | |
// @id FixMarket12321321 | |
// @name FixMarket | |
// @version 1.0 | |
// @namespace AB | |
// @author Pilate | |
// @description Fixes broken item tooltips on market pages | |
// @include http://steamcommunity.com/market/* | |
// @run-at document-end | |
// ==/UserScript== | |
unsafeWindow.BShouldSuppressFades = function () { return true; }; | |
function findResults () { | |
if (unsafeWindow.g_oSearchResults) { | |
clearInterval(_interval); | |
unsafeWindow.g_oSearchResults.m_cPageSize = 100; | |
unsafeWindow.g_oSearchResults.GoToPage(0, 1); | |
} | |
} | |
var _interval = setInterval(findResults, 100); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
m_cPageSize - nice find!