what.cd + other gazelle trackers - improve readability

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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%";
        	} 
        }
}