Created
October 4, 2022 16:28
-
-
Save xPaw/231cf3802f0be6f9bc885f7cb90af298 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== | |
// @name Remove animation style from Steam sale pages | |
// @namespace remove-animation-on-steam-sales | |
// @match https://store.steampowered.com/sale/* | |
// @icon https://store.steampowered.com/favicon.ico | |
// @version 1.0 | |
// @author xPaw | |
// @grant GM_addStyle | |
// ==/UserScript== | |
GM_addStyle( 'body { animation: none !important; }' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment