TLclean

Hides date and category until row is hovered

  1. // ==UserScript==
  2. // @name TLclean
  3. // @author Paxamit
  4. // @description Hides date and category until row is hovered
  5. // @namespace paxamit
  6. // @include http://*.torrentleech.org/*
  7. // @include https://*.torrentleech.org/*
  8. // @exclude http://*classic.torrentleech.org/*
  9. // @exclude https://*classic.torrentleech.org/*
  10. // @license MIT
  11. // @version 0.24
  12. // @grant GM_addStyle
  13. // ==/UserScript==
  14.  
  15. GM_addStyle(`
  16. .torrents tr:not(:hover) div.info { color: transparent !important; }
  17. .torrents tr:not(:hover) div.info a { color: transparent !important; }
  18. .torrents tr:not(:hover) div.info .fa-star { color: transparent !important; }
  19. `)