Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Created March 16, 2015 03:52
Show Gist options
  • Select an option

  • Save zeroeth/40787157b4daa8d86320 to your computer and use it in GitHub Desktop.

Select an option

Save zeroeth/40787157b4daa8d86320 to your computer and use it in GitHub Desktop.
hide the drama
// ==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