Created
December 30, 2017 07:09
-
-
Save shreddd/c77a8a12343730e7d348d7adce28731b to your computer and use it in GitHub Desktop.
Greasemonkey script to block FB trending news
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 Block-FB-Trending-News | |
// @version 1 | |
// @grant none | |
// @include https://www.facebook.com/* | |
// ==/UserScript== | |
var trending = document.getElementById('pagelet_trending_tags_and_topics'); | |
if (trending) | |
trending.remove(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment