Created
August 17, 2016 09:39
-
-
Save viktorklang/793ed8e66d63e5765b3284c48c17b807 to your computer and use it in GitHub Desktop.
Tampermonkey script to hide Twitter Moments
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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