Attilion / Remove empty ad frame (SteamGifts)

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