您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
highlight free & halfdown torrents
当前为
// ==UserScript== // @name TJUPT hilighter // @namespace YD // @version 0.1 // @description highlight free & halfdown torrents // @author YD // @match https://www.tjupt.org/torrents.php* // @grant none // ==/UserScript== (function() { 'use strict'; var trs = document.getElementsByClassName('torrents')[0].rows; for (var i = 1; i < trs.length; i++) { var tmp = trs[i].cells[1].children[0].rows[0].cells[1]; if (tmp.getElementsByClassName('free').length == 1) { tmp.remove trs[i].style.backgroundColor='#ffea99'; trs[i].cells[1].children[0].style.backgroundColor='#ffea99'; } if (tmp.getElementsByClassName('halfdown').length == 1) { tmp.remove trs[i].style.backgroundColor='#b3b3ff'; trs[i].cells[1].children[0].style.backgroundColor='#b3b3ff'; } } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址