Greasy Fork is available in English.

openload

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

< Feedback de openload

Avaliação: Bom - o script funciona

§
Publicado em: 28/02/2018
Editado em: 18/03/2018

Seems openload has been updated with videojs-vast-vpaid plugin

your userscript was working perfectly until today:

  • An add video is loading when watching the video After inspecting the site, these videos seems to come from videojs-vast-vpaid plugin

this code snippet seems to do the trick:

var tmrstreamurl = setInterval(function(){
    if( $(streamurl).text() != 'HERE IS THE LINK' )
    {
     clearInterval(tmrstreamurl);
     $('#realdl a').attr('href', '/stream/' + $(streamurl).text());
     $('#videooverlay').click();
     videojs("olvideo").vast.disable(); //disable vast video adds
    }
   },100);
§
Publicado em: 18/03/2018

Ok, they removed it, all good.

Enviar resposta

Entre para publicar uma resposta.