NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name FacebookAppsSidebarRemover
// @namespace FacebookAppsSidebarRemover
// @version 1
// @description Remove right sidebar from Facebook Apps
// @include http://apps.facebook.com/*
// @include https://apps.facebook.com/*
// @grant metadata
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js
// @author CiLiBi18
// @copyright 2015, LeFoulek
// ==/UserScript==
$(function(){
setTimeout(function() {
$('#rightCol').remove();
}, 500);
});