what.cd + other gazelle trackers - improve readability

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

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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%";
        	} 
        }
}