NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Openload Download Bypass // @description Openload Download Bypass [2018] // @copyright 2018, Diegiwg // @license MIT // @icon http://pics.smotri.com/cskins/blue/smiles/ai.gif // @namespace https://openuserjs.org/meta/Diegiwg/Openload_Download_Bypass.user.js // @version 1.2.0 // @updateURL https://openuserjs.org/meta/Diegiwg/Openload_Download_Bypass.user.js // @author Diegiwg // @match http*://oload.win/f/* // @grant GM_setClipboard // ==/UserScript== (function () { 'use strict'; document.body.style.display = "none"; $('#realdl a').attr("href", '/stream/' + $('#DtsBlkVFQx').text()); $("#realdl").slideDown(); var realdl = document.getElementById("realdl").innerHTML; document.head.innerHTML = ""; document.body.innerHTML = realdl; var href = document.getElementsByClassName("main-button dlbutton")[0].href; GM_setClipboard(href); location.href = href; })();