onvasortir ==> Can't access to a site if ABP is activated
Re: onvasortir ==> Can't access to a site if ABP is activated
don't use 2 adblockers, keep only the real one: ABP and put the filters under custom filters section.
Re: onvasortir ==> Can't access to a site if ABP is activated
anyway, update your Liste FR, it was updated. But, again: don't use 2 adblockers
Re: onvasortir ==> Can't access to a site if ABP is activated
I desabled Adblock Edge, and I could update Adblock Plus.
Since that, one time it works, and the next time the site is still blocked.
I think I give up. Thanks anyway.
Since that, one time it works, and the next time the site is still blocked.
I think I give up. Thanks anyway.
Re: onvasortir ==> Can't access to a site if ABP is activated
still working for me.
You have to disable edge (or remove) from the addons page and not only disable it for onvasortir sites
Also, if you are using some other blocking stuff (ghostery, disconnect) you have to whitelist onvasortir or disable those addons
You have to disable edge (or remove) from the addons page and not only disable it for onvasortir sites
Also, if you are using some other blocking stuff (ghostery, disconnect) you have to whitelist onvasortir or disable those addons
Re: onvasortir ==> Can't access to a site if ABP is activated
Hi guys,
Website : http://paris.onvasortir.com/
The website has been updated to fight Adblock, something like "SmartAdServer" has been added and a js script added "FuckAdblock.js"
Did someone succeed in accessing the website while Adblock is active ? Cause i tried many things without success...
Ps : yes my lists are up to date...
Website : http://paris.onvasortir.com/
The website has been updated to fight Adblock, something like "SmartAdServer" has been added and a js script added "FuckAdblock.js"

Did someone succeed in accessing the website while Adblock is active ? Cause i tried many things without success...
Ps : yes my lists are up to date...

Re: onvasortir ==> Can't access to a site if ABP is activated
still not fixed
Re: onvasortir ==> Can't access to a site if ABP is activated
Greasemonkey script:
https://greasyfork.org/fr/scripts/9614-ovsembedded
https://greasyfork.org/fr/scripts/9614-ovsembedded
Code: Select all
// ==UserScript==
// @name OVSEmbedded
// @namespace OVSEmbedded
// @langue french
// @description Supprime les pubs et traceurs d'OVS,sans désactiver Adblock
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
// @include https://addons.mozilla.org/fr/firefox/addon/greasemonkey/
// @include http://*.onvasortir.com/*
// @version 1
// @run-at document-start
// @grant none
// ==/UserScript==
function fuckJamirokai()
{
$("script").each(function(){
var content=this.innerHTML;
if (content.contains("sas")
|| content.contains("smart")
|| content.contains("eStat_")
|| content.contains("analytics")
|| content.contains("ubicon"))
{
$(this).remove();
}
});
}
document.addEventListener('DOMContentLoaded', fuckJamirokai, false);
window.addEventListener ("load", pageFullyLoaded);
Re: onvasortir ==> Can't access to a site if ABP is activated
Is GreaseMonkey mandatory, ABP can't get rid of it alone ?
Re: onvasortir ==> Can't access to a site if ABP is activated
test
Code: Select all
@@||ww62.smartadserver.com^$domain=onvasortir.com
@@||sascdn.com$script,domain=onvasortir.com
Re: onvasortir ==> Can't access to a site if ABP is activated
It doesn't work now...
Re: onvasortir ==> Can't access to a site if ABP is activated
try adding also
Code: Select all
@@||onvasortir.com^$script
Re: onvasortir ==> Can't access to a site if ABP is activated
That's ok now, thank you !
Re: onvasortir ==> Can't access to a site if ABP is activated
Thankkkkssss .. 
