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的反馈

评价:好评 - 脚本一切正常

§
发表于:2020-02-06

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作者
§
发表于:2020-05-09
编辑于:2020-05-09

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.

§
发表于:2020-12-22

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作者
§
发表于:2021-01-12

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. 🙂

发表回复

登录以发表回复。