Facebook – Script to remove “People you may know” on Facebook

facebook

Is there a userscript / greasemonkey script that can remove the People you may know section from Facebook?

Best Answer

I'd recommend using Stylish. It's an addon for Firefox, similar to Greasemonkey. But instead of adding custom scripts, it adds custom CSS.

Once installed, add this style to Stylish:

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("facebook.com") {
  #pagelet_netego {display: none;}
}

This should take care of your "People you may know" box situation.

Enjoy.