NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Remove Twitter Moments Link
// @namespace Twitter
// @description Remove link to Moments page.
// @include https://twitter.com/*
// @version 1
// @grant none
// ==/UserScript==
var moments = document.querySelector('.moments');
var menu = moments.parentNode;
menu.removeChild(moments);