Skip to content

Instantly share code, notes, and snippets.

@kemalersin
Last active November 21, 2023 12:26
Show Gist options
  • Save kemalersin/c54861ef78db653144f0fda6ebb746aa to your computer and use it in GitHub Desktop.
Save kemalersin/c54861ef78db653144f0fda6ebb746aa to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Steam USD Uyarısı Gizleyici
// @author Kemal Ersin YILMAZ
// @icon http://store.steampowered.com/favicon.ico
// @match http://store.steampowered.com/*
// @match https://store.steampowered.com/*
// @grant none
// @run-at document-body
// ==/UserScript==
/* jshint -W097 */
'use strict';
var banner = document.getElementsByClassName('CurrencyChangeBanner');
if (banner.length) banner[0].remove();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment