// ==UserScript== // @name OpenLoad Downloader // @namespace https://openload.co/ // @version 0.21 // @description OpenLoad Download Link // @author ShafterOne // @match https://openload.co/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/31528/OpenLoad%20Downloader.user.js // @updateURL https://update.greasyfork.icu/scripts/31528/OpenLoad%20Downloader.meta.js // ==/UserScript== $( document ).ready(function() { if($('#streamurl').html().length){ var streamUrl = 'https://openload.co/stream/'+$('#streamurl').html(); var dlBtn = 'Download'; var removeLink = 'x'; $('body').prepend(dlBtn+removeLink); } $( "#remove-oldl-link" ).click(function() { $( "#remove-oldl-link,#oldl-link").remove(); }); });