openload.co

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

Versione datata 05/03/2016. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @author       @leoncastro
// @namespace    https://github.com/leoncastro
// @name         openload.co
// @version      0.02
// @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');
 }
 setInterval(function (){ $("body>object").remove(); },100);
 window.pos=1;
 window.onclick=function(){};
 document.onclick=function(){};
 document.body.onclick=function(){};
})})(window.jQuery.noConflict(true));