您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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或关注我们的公众号极客氢云获取最新地址