Torrent Invites - Get your free bittorrent tracker invitations! - Powered by vBulletin
Ad
Results 1 to 2 of 2
  1. #1

    Posts
    128
    By following this tutorial you will able to filter out unwanted releases from the browse page on TorrentLeech in Firefox. (Chrome has built in support, for other browsers see this guide on installing Greasemonkey, but I can't guarantee that the script will work with them.)

    1. Install the Greasemonkey add-on.

    2. Install the Torrentleech Release Filter Greasemonkey script.

    3. Start editing the script: right click on the monkey head on your status bar, select Manage User Scripts, select Torrentleech Release Filter from the list then press Edit.

    4. The script is buggy by default, you have to change the following line
    if (thisLink.text.search(filter[k]) >= 0) {
    to this:
    if (thisLink.text.search(filter[k]) >= 0 && thisLink.parentNode && thisLink.parentNode.parentNode && thisLink.parentNode.parentNode.parentNode) {
    5. Change the filtered words as you like. I suggest to put a space before and after the filtering word to make sure that nothing gets filtered out accidentally.
    (For example if you simply write "CAM" instead of " CAM " to then it will filter out "somethingCAMsomething" but if you use the latter it will filter only "something CAM something".)

    6. Save the file and reload the page in Firefox.

    7. Optional:
    The default script uses case sensitive search (for example XviD and XVID are different). To make case insensitive change the following line from
    if (thisLink.text.search(filter[k]) >= 0 && thisLink.parentNode && thisLink.parentNode.parentNode && thisLink.parentNode.parentNode.parentNode ) {
    to this:
    if (thisLink.text.toLowerCase().indexOf(filter[k]) != -1 && thisLink.parentNode && thisLink.parentNode.parentNode && thisLink.parentNode.parentNode.parentNode) {



    Here
    is a full a working example script that filters out R5, R6 and CAM releases. (It's on tinypaste because both the QUOTE and CODE tags make it unreadable here.)



    The tutorial is written by me. Sorry for my English. :) Thanks for jumjum from Userscripts for the script.
    Last edited by Saint; 07-06-2010 at 05:39 AM.


  2. To remove ads become VIP. Inquire about advertising here.
  3. #2

    Posts
    288
    When u say unwanted releases, are talking about what? Bad video/sound sources?

Similar Threads

  1. How to install ruTorrent 3.1 on Server
    By MikeD in forum Seedbox Tutorials
    Replies: 6
    Last Post: 03-31-2011, 10:23 AM
  2. Replies: 4
    Last Post: 04-26-2010, 06:36 AM
  3. How to Use a PS3 Controller on a PC
    By ITzJuStInZ in forum Miscellaneous
    Replies: 5
    Last Post: 12-16-2009, 10:17 PM
  4. Replies: 2
    Last Post: 07-31-2009, 02:54 AM
  5. How to install Installous cracked apps on Iphone 3.0
    By DJmike in forum Miscellaneous
    Replies: 14
    Last Post: 07-26-2009, 12:57 PM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •