NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name UploadExAdsRemover // @namespace UploadExAdsRemover // @version 1.02 // @description UploadEx ads remover // @include http://*.uploadex.com/* // @include https://*.uploadex.com/* // @include http://*uploadex.com/* // @include https://*uploadex.com/* // @grant metadata // @copyright 2015, LeFoulek // ==/UserScript== var style = document.createElement("style"); style.innerHTML = " #of1d { display: none !important; }"; document.getElementsByTagName("head")[0].appendChild(style); var timeoutID; delayScript(); function delayScript() { timeoutID = window.setTimeout(removeAd, 500); } function removeAd() { $('#container > style').remove(); $('#container > a > img').remove(); // fake download button }