Greasy Fork is available in English.

RARBG Advanced Filters

Additional quality of life filters: - Show or hide category icons; - Show or hide torrent thumbnails; - Show or hide movie and tv filters (Removes torrents with KORSUB and 720p); - Show or hide porn; - search for movies and tv shows by genre - Filter based on minimum IMDB rating;

< Valutazione su RARBG Advanced Filters

Recensione: Bene - lo script funziona

§
Pubblicato: 06/02/2020

Option for hide scene (uploader) release

Hi Kxmode, I made a personal fork to hide the uploader "scene" thus leaving only real scene releases. I post it here in case it would be of use to somebody. I really appreciate your work, good job mate.

KxmodeAutore
§
Pubblicato: 09/05/2020
Modificato: 09/05/2020

Hi. I checked out your script. There are so many formatting changes that it is hard to tell where your update appears. Could you apply your tweaks to the latest version without changing the formatting? I can toss that in my comparison app and review.

§
Pubblicato: 22/12/2020

Hi Kxmode,
I missed you reply btw obviously seems fair, really are just few lines of code basically copycat of you korsub filter with the only logic added in this piece


$.each($(".lista2t tr td:nth-of-type(8)"), function(index, value) {
		var uploader = $(this).text();
		// Logic to hide uploader scene torrents
		if (!showScene) {
			if (parseInt(uploader.indexOf("Scene")) > -1) {
				$(this)
					.parents(".lista2")
					.remove();
			}
		}
	});

KxmodeAutore
§
Pubblicato: 12/01/2021

Thanks, Silverbell. I'll review your code soon.

My apologies for the delay in response.

Thank you for putting it together. At a glance, it looks promising. 🙂

Pubblica risposta

Accedi per pubblicare una risposta.