// ==UserScript== // @name SlimFbGames // @namespace https://facundogoni.com.ar // @description Remove Facebook Right Column and Right Dock in Games // @include http://apps.facebook.com/* // @include https://apps.facebook.com/* // @version 1 // @grant none // @downloadURL https://update.greasyfork.icu/scripts/16583/SlimFbGames.user.js // @updateURL https://update.greasyfork.icu/scripts/16583/SlimFbGames.meta.js // ==/UserScript== var rightCol = document.getElementById("rightCol"); rightCol.parentNode.removeChild(rightCol); var fbDock = document.getElementsByClassName("fbDock"); fbDock[0].remove();