CiLiBi18 / OhMyMagAdsRemover

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