extreme-down.video

French supplemental subscription

Moderator: Liste AR & FR Mods

Locked
baloun
Senior Member
Senior Member
Posts: 82
Joined: Sun Oct 01, 2017 4:00 pm

extreme-down.video

Post by baloun »

Le site affiche des liens publicitaires usenet
exemple

Code: Select all

https://www.extreme-down.video/films/films-1080p-x265/45556-the-machinist-french-avec-truefrench-bluray-1080p-x265.html#

Script inline

Code: Select all

<script type="835b7299c97864ec54e026f7-text/javascript">
	var container = $("div[style='padding: 19px; background-color: #f5f5f5; border: 1px solid #e3e3e3; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); width: 90%; margin: 20px auto; text-align: center;']");

	for(var i = 1; i < container.length; i++){

		var firstLink = container[i].firstChild;
		var newLink = firstLink.cloneNode(true);
		
		newLink.firstChild.textContent = "Usenet";
		newLink.append(" (anonyme & rapide)");

		var today = new Date();
		var mins = today.getMinutes();

		if(mins % 2 == 0){
			$(firstLink).before(newLink);
			$(newLink).after("<br/>");
		}else{
			$(firstLink).after(newLink);
			$(newLink).before("<br/>");
		}

		var filename = $(firstLink)[0].title.split("Télécharger ")[1];

		$(newLink).click(function(event){
			event.preventDefault();
			window.location.href = "http://www.friendlyduck.com/AF_TA/rel/index.cfm?RST=UNF&TAD=436270";
		});
	}
</script>
ce filtre marche, mais vous avez peut être mieux :

Code: Select all

extreme-down.*##script:contains(friendlyduck)
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

Your uBO filter is deprecated (old syntax) and only for firefox

current uBO syntax (firefox)
extreme-down.*##^script:has-text(friendlyduck)

try this filter (FF / chrome)

Code: Select all

extreme-down.*##+js(acis, $, click)
baloun
Senior Member
Senior Member
Posts: 82
Joined: Sun Oct 01, 2017 4:00 pm

Post by baloun »

the one with the text friendlyduck seems to be better as "click" could block legitimate use ?

if "acis, $, click" stop the execution as soon as the .click function is called, why i don't see the "usenet" text added before the ".click" function ?

edit: nevermind, it blocks at the first $ found :
"$(firstLink).before(newLink);"

why not

Code: Select all

extreme-down.*##+js(acis, $, friendlyduck)
or i don't understand something
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

baloun
Senior Member
Senior Member
Posts: 82
Joined: Sun Oct 01, 2017 4:00 pm

Post by baloun »

they added a new javascript

Code: Select all

<script data-cfasync="false" type="text/javascript">(function($,document){for($._Eh=$.z;$._Eh<$......E(){e&&e();e=null;}})('graizoah.com',3337007,new XMLHttpRequest(),document.createElement('script'),_zbfqrw)</script>

it prevent text selection and i don't know what it does exactly

this filter allow to select text :

Code: Select all

extreme-down.*##^script:has-text(zfgloadedpopup)
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

User avatar
smed79
Liste AR/FR Author
Liste AR/FR Author
Posts: 15839
Joined: Sun Jan 17, 2010 4:00 am
Location: EasyList Forum

Post by smed79 »

•► Read RULES / Use forum Search
••► Don't post clickable links
•••►Upload screenshots at imgbb.com
baloun
Senior Member
Senior Member
Posts: 82
Joined: Sun Oct 01, 2017 4:00 pm

Post by baloun »

hello
i think they bypassed or added a new script.
go to

Code: Select all

https://www.extreme-down.video/films-new-ultrahd/new-webrip-4k/
and click on "my spy", open in a new tab.
Then click on any other version (egalement disponible en...) and the current opened page will be closed
intense
Contributor
Contributor
Posts: 10500
Joined: Wed Mar 27, 2013 9:56 am

Post by intense »

yeah, bad filter:
*$popup,1p,domain=extreme-down.video

fixed for uBO: https://github.com/uBlockOrigin/uAssets ... 6582faa2ae
User avatar
smed79
Liste AR/FR Author
Liste AR/FR Author
Posts: 15839
Joined: Sun Jan 17, 2010 4:00 am
Location: EasyList Forum

Post by smed79 »

baloun wrote: Wed Jul 08, 2020 10:59 amthe current opened page will be closed
Résolu ici https://hg.adblockplus.org/listefr/rev/71ed580fcedd
•► Read RULES / Use forum Search
••► Don't post clickable links
•••►Upload screenshots at imgbb.com
Locked