Greasy Fork is available in English.

openload.co

Remove anti-adblock, ads and timer waits, and show direct download link

Від 16.06.2016. Дивіться остання версія.

// ==UserScript==
// @author       @leoncastro
// @namespace    https://github.com/leoncastro
// @name         openload.co
// @version      0.04
// @description  Remove anti-adblock, ads and timer waits, and show direct download link
// @icon         https://openload.co/favicon.ico
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js
// @include      /^(?:https?:)?\/\/openload\.co\/*.*/
// @compatible   firefox+greasemonkey
// @compatible   chrome+tampermonkey
// @grant        none
// @run-at       document-start
// ==/UserScript==
//
// @run-at document-start
window.adblock=false;
window.adblock2=false;
window.open=function(){};
//
// @run-at document-end
(function($){$(function(){
 if( $('#realdl>a').attr('href') )
 {
  $('#btnView').hide();
  $('#btnDl').hide();
  $('.dlButtonContainer').show();
  $('h3.dlfile.h-method').hide();
  $('.col-md-4.col-centered-sm iframe').remove();
  $('#downloadTimer').hide();
  $('#realdl').show();
  // window.location=$('#realdl>a').attr('href');
 }
 $("#videooverlay").click(); // $("#videooverlay,.title,.logocontainer").hide();
 setInterval(function (){ $("body>object").remove(); },100);
 window.pos=1;
 window.onclick=function(){};
 document.onclick=function(){};
 document.body.onclick=function(){};
})})(window.jQuery.noConflict(true));