// ==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 // @downloadURL none // ==/UserScript== (function () { 'use strict'; GM_addStyle(` tbody tr:hover { background-color: cyan !important; } `); })();