Browsing Recent Torrents
#1
Is there a way to browse recent torrents while excluding a certain category (say porn, for instance?) Thanks!
Reply
#2
No.

But you can use a "userscript" [ such as https://greasyfork.org/scripts/1573-the-...ay-cleaner ] to have your web browser delete them from the page after it's been downloaded from TPB but before it is shown to you.
Reply
#3
You could try this very lightweight add-on. :-)
Tested on Firefox 32, with Greasemonkey extension.

To INSTALL:
1) Save this file somewhere permanent, as TPBSafeBrowse.user.js (Note: There should be no .txt extension)
2) Open the file in Firefox (File -> Open) to Install the script. Done.

Google Chrome:
Install Tampermonkey extension.
Once installed, Click on the Tampermonkey icon in Chrome. Select 'Add a new script' and copy-paste the code below and save it.

Code:
// ==UserScript==
// @name      TPBSafeBrowse
// @namespace http*//thepiratebay.se
// @include   http*//thepiratebay.se/*
// @author    yatu
// @version   1.0
// ==/UserScript==

// Simple Porn Filter
$(document).ready(function() {
    $("td.vertTh").each(function() {
        if ($(this).children().html().match("Porn"))
            $(this).parent().remove();
    });
});
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Browsing an user torrents iv0live 4 10,109 Jun 16, 2020, 15:03 pm
Last Post: iv0live
  SuprBay: Recent Multiple Extended Periods Of Downtime? Tom Servo 3 15,103 Feb 19, 2019, 17:45 pm
Last Post: Tom Servo
  Can no longer use single view while browsing torrents? TheReprobate 2 11,473 Jul 10, 2017, 07:27 am
Last Post: Q91
  Recent Torrents Page Glenn_K9 2 12,259 Mar 01, 2016, 10:32 am
Last Post: demonS
  Recent torrents MeRaDil 11 25,849 Mar 05, 2014, 00:13 am
Last Post: inotyourdaddy



Users browsing this thread: 1 Guest(s)