Greasy Fork is available in English.

Hide Facebook Side Ads

Removes Side Ads from Facebook

  1. // ==UserScript==
  2. // @name Hide Facebook Side Ads
  3. // @description Removes Side Ads from Facebook
  4. // @author Nyk Zukowski
  5. // @include http*//*facebook.com/*
  6. // @grant GM_addStyle
  7. // @version 1.0.1
  8. // @namespace https://greasyfork.org/users/54551
  9. // ==/UserScript==
  10.  
  11. /*jshint multistr: true */
  12.  
  13. /* Found these elements by Inspecting in Chrome, applied custom CSS and duplicated here; working cleanly as of 24 May 2017 */
  14. GM_addStyle ( " \
  15. #pagelet_ego_pane { \
  16. display: none; \
  17. } \
  18. " );