Skip to content

Instantly share code, notes, and snippets.

@jnv
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnv/c5402051326e63ed59de to your computer and use it in GitHub Desktop.
Save jnv/c5402051326e63ed59de to your computer and use it in GitHub Desktop.
// ==UserScript==
// @id fbrecomhide@jnv.gihtub.io
// @name Hide Recommendations on Facebook
// @description Removes "People you may know", "Recommended Pages" and similar on Facebook.
// @version 2015.07.12
// @namespace http://jnv.github.io
// @domain www.facebook.com
// @include http://www.facebook.com/*
// @include https://www.facebook.com/*
// @grant GM_addStyle
// @screenshot https://gist.github.com/jnv/c5402051326e63ed59de/raw/screenshot.png
// @downloadURL https://gist.github.com/jnv/c5402051326e63ed59de/raw/fbhideegopane.user.js
// @license CC0 1.0; https://creativecommons.org/publicdomain/zero/1.0/
// ==/UserScript==
var style = "#pagelet_ego_pane { display: none !important; }"
GM_addStyle(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment