NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name De-moment Twitter // @namespace M51 // @version 0.1 // @license MIT // @description See that "moments" tab? Well I don't want to see it. // @author DeliberateZero // @match https://twitter.com/* // @grant GM_addStyle // ==/UserScript== (function() { 'use strict'; GM_addStyle('a[href="/i/moments"] { display: none !important; }'); GM_addStyle('li[class="moments"] { display: none !important; }'); })(); function hideNode (jNode) { jNode.hide (); }