NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Remove empty ad frame (SteamGifts) // @namespace Attilion // @description Remove div emptied by Adblock // @include https://www.steamgifts.com/* // @version 1.0 // @grant none // ==/UserScript== var div = document.getElementsByClassName('sidebar__mpu')[0]; div.parentNode.removeChild(div);