NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name VSD & Voici Ads Remover // @namespace VSDVoiciAdsRemover // @version 1 // @description Remove AdBlock Blocker from voici.fr & vsd.fr // @include http://voici.*/* // @include https://voici.*/* // @include http://*.voici.*/* // @include https://*.voici.*/* // @include http://vsd.*/* // @include https://vsd.*/* // @include http://*.vsd.*/* // @include https://*.vsd.*/* // @grant metadata // @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @author CiliBi18 // @copyright 2017, LeFoulek // ==/UserScript== $(function(){ setTimeout(removeAdblockBlocker, 500); }); function removeAdblockBlocker(){ $('.img-wrapper div+div').remove(); $('.img-wrapper picture img').removeAttr('style'); setTimeout(removeAdblockBlocker, 500); }