🏠 Home 

OpenLoad Downloader

OpenLoad Download Link


Install this script?
  1. // ==UserScript==
  2. // @name OpenLoad Downloader
  3. // @namespace https://openload.co/
  4. // @version 0.21
  5. // @description OpenLoad Download Link
  6. // @author ShafterOne
  7. // @match https://openload.co/*
  8. // @grant none
  9. // ==/UserScript==
  10. $( document ).ready(function() {
  11. if($('#streamurl').html().length){
  12. var streamUrl = 'https://openload.co/stream/'+$('#streamurl').html();
  13. var dlBtn = '<a href="'+streamUrl+'" target="_blank" id="oldl-link" style="position:absolute;left:10px;top:10px;z-index:999;color:#fff;padding:10px;background-color:blue">Download</a>';
  14. var removeLink = '<span id="remove-oldl-link"style="position:absolute;left:88px;top:5px;z-index:1000;color:#fff;border-radius:50%;padding:0 5px;background:red;font-weight:bold;cursor:pointer">x<span>';
  15. $('body').prepend(dlBtn+removeLink);
  16. }
  17. $( "#remove-oldl-link" ).click(function() {
  18. $( "#remove-oldl-link,#oldl-link").remove();
  19. });
  20. });