Nyaa Torrent Table Row Highlight

Highlight table rows on hover with a color

  1. // ==UserScript==
  2. // @name Nyaa Torrent Table Row Highlight
  3. // @version 2025-03-15
  4. // @description Highlight table rows on hover with a color
  5. // @author yisonPylkita
  6. // @match https://nyaa.si/
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=nyaa.si
  8. // @license MIT
  9. // @grant GM_addStyle
  10. // @namespace http://tampermonkey.net/
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16. GM_addStyle(`
  17. tbody tr:hover {
  18. background-color: magenta !important;
  19. }
  20.  
  21. tbody tr:hover td { color: white; }
  22. `);
  23. })();

QingJ © 2025

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