TorrentGalaxy - Filter 1080p Releases in IMDb Search

Keeps only the 1080p releases on the TorrentGalaxy IMDb search page.

// ==UserScript==

// @name                TorrentGalaxy - Filter 1080p Releases in IMDb Search
// @description         Keeps only the 1080p releases on the TorrentGalaxy IMDb search page.
// @version             1.0

// @namespace           io.github.ni554n
// @match               http*://torrentgalaxy.*/torrents.php?*search=tt*
// @match               http*://tgx.*/torrents.php?*search=tt*

// @supportURL          https://github.com/ni554n/userscripts/issues
// @license             MIT

// @author              Nissan Ahmed
// @homepageURL         https://anissan.com
// @contributionURL     https://paypal.me/ni554n

// ==/UserScript==

const releaseTableRows = document.getElementsByClassName("tgxtablerow");

for (const row of releaseTableRows) {
  const releaseName = row.innerText.toLowerCase();

  if (!releaseName.includes("1080p")) {
    row.style.display = "none";
  }
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址