// ==UserScript== // @name GGn :: Hide Stickied Torrents // @namespace https://greasyfork.org/en/scripts/370796-ggn-hide-stickied-torrents // @version 1.0 // @description Hides the stickied torrents at the top of the torrents page. // @author newstarshipsmell // @match https://gazellegames.net/torrents.php* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var stickies = document.querySelectorAll('tr.sticky'); for (var i = 0; i < stickies.length; i++) { stickies[i].classList.add("hidden"); } })();