Created
March 16, 2015 03:52
-
-
Save zeroeth/40787157b4daa8d86320 to your computer and use it in GitHub Desktop.
hide the drama
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 facebook trending | |
| // @namespace pixelflow | |
| // @version 0.1 | |
| // @description hide the trending display | |
| // @author zeroeth | |
| // @match https://www.facebook.com/* | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| var style = "#pagelet_trending_tags_and_topics { display: none !important; }" | |
| GM_addStyle(style); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment