Skip to content

Instantly share code, notes, and snippets.

@viktorklang
Created August 17, 2016 09:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viktorklang/793ed8e66d63e5765b3284c48c17b807 to your computer and use it in GitHub Desktop.
Save viktorklang/793ed8e66d63e5765b3284c48c17b807 to your computer and use it in GitHub Desktop.
Tampermonkey script to hide Twitter Moments
// ==UserScript==
// @name Hide moments
// @namespace http://irrelevant.domainname/
// @version 0.1
// @description Moments Lost
// @author √
// @match https://twitter.com/*
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle ( ".moments {display: none !important;}" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment