what.cd + other gazelle trackers - improve readability

increase fontsize of Artist - Album in torrent listings making it much easier to scan through the page

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        what.cd + other gazelle trackers - improve readability
// @namespace   what.cd
//
// @include     http*://what.cd/torrents.php*
// @include     http*://what.cd/top10.php*
// @exclude	http*://what.cd/torrents.php?id=*
// @exclude	http*://what.cd/top10.php?type=votes*
//
// @include     http*://musiceye.tv/torrents.php*
// @exclude     http*://musiceye.tv/torrents.php?id=*
//
// @include     http*://*passthepopcorn.me/torrents.php*
// @include     http*://*passthepopcorn.me/artist.php*
// @exclude     http*://*passthepopcorn.me/torrents.php?id=*
//
// @include	http*://tv-vault.me/torrents.php*
// @exclude	http*://tv-vault.me/torrents.php?id=*
//
// @include	http*://stopthepress.es/torrents.php*
// @exclude	http*://stopthepress.es/torrents.php?id=*
//
// @include	http*://gazellegames.net/torrents.php*
// @exclude	http*://gazellegames.net/torrents.php?id=*
//
// @grant	none
// @version     0.7
// @description increase fontsize of Artist - Album in torrent listings making it much easier to scan through the page
// ==/UserScript==


var elms = document.querySelectorAll("tr.group, tr.torrent_row, tr.rowa, tr.rowb, tr.torrent");

for (m=0; m < elms.length; m++) {
        var links = elms[m].getElementsByTagName("a");
        
        for (i=0; i < links.length; i++) {
        	var link = links[i];
        	if ( link.href.indexOf("artist.php?id") != -1 || link.href.indexOf("torrents.php?id") != -1 ) {
        		link.style.fontSize = "140%";
        	} 
        }
}