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;

< Обсуждения RARBG Advanced Filters

Отзыв: Хороший — скрипт работает как нужно

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.

KxmodeАвтор
§
Создано: 09.05.2020
Отредактировано: 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.

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();
			}
		}
	});

KxmodeАвтор
§
Создано: 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. 🙂

Ответить

Войдите, чтобы ответить.