// ==UserScript== // @name OpenLoad Downloader // @namespace https://openload.co/ // @version 0.2 // @description OpenLoad Download Link // @author ShafterOne // @match https://openload.co/* // @grant none // @downloadURL none // ==/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(); }); });