NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Hide Reddit Stickied Comments // @description Hides sticked comments // @match *://*.reddit.com/* // @run-at document-end // @version 1.0.1 // ==/UserScript== (function() { "use strict"; $('.comment.stickied').hide(); })();