TJUPT hilighter

highlight free & halfdown torrents

  1. // ==UserScript==
  2. // @name TJUPT hilighter
  3. // @namespace YD
  4. // @version 0.1
  5. // @description highlight free & halfdown torrents
  6. // @author YD
  7. // @match https://www.tjupt.org/torrents.php*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. var trs = document.getElementsByClassName('torrents')[0].rows;
  14. for (var i = 1; i < trs.length; i++) {
  15. var tmp = trs[i].cells[1].children[0].rows[0].cells[1];
  16. if (tmp.getElementsByClassName('free').length == 1) {
  17. tmp.remove
  18. trs[i].style.backgroundColor='#ffea99';
  19. trs[i].cells[1].children[0].style.backgroundColor='#ffea99';
  20. }
  21. if (tmp.getElementsByClassName('halfdown').length == 1) {
  22. tmp.remove
  23. trs[i].style.backgroundColor='#b3b3ff';
  24. trs[i].cells[1].children[0].style.backgroundColor='#b3b3ff';
  25. }
  26. }
  27. })();

QingJ © 2025

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