NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name OhMyMagAdsRemover // @namespace OhMyMagAdsRemover // @version 1 // @description OhMyMag ads remover // @include http://*.ohmymag.com/* // @include http://ohmymag.com/* // @grant metadata // @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @copyright 2014, Foulek // ==/UserScript== $(function(){ setTimeout(function() { $('div.post-media.embed-container.mt10.mb10').not('.hidden').remove(); $('div.post-media.embed-container.mt10.mb10').removeClass('hidden'); }, 500); });