Created
January 5, 2016 19:31
-
-
Save jjthrash/671d22982152d5e68985 to your computer and use it in GitHub Desktop.
User script to hide Facebook Trending stuff
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 Remove FB Trending | |
// @namespace com.jimmythrasher.removetrending | |
// @include https://www.facebook.com/* | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
function doItDude() { | |
var it = document.getElementById("pagelet_trending_tags_and_topics"); | |
it.outerHTML = ""; | |
} | |
window.addEventListener('load', | |
doItDude, | |
false); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment