Nyaa Torrent Table Row Highlight

Highlight table rows on hover with a color

// ==UserScript==
// @name         Nyaa Torrent Table Row Highlight
// @version      2025-03-15
// @description  Highlight table rows on hover with a color
// @author       yisonPylkita
// @match        https://nyaa.si/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=nyaa.si
// @license      MIT
// @grant        GM_addStyle
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function () {
    'use strict';

    GM_addStyle(`
      tbody tr:hover {
        background-color: magenta !important;
      }

      tbody tr:hover td { color: white; }
    `);
})();

QingJ © 2025

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