Nyaa Torrent Table Row Highlight

Highlight table rows on hover with a cyan color

目前為 2025-03-14 提交的版本,檢視 最新版本

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

(function () {
    'use strict';

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

QingJ © 2025

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