NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name facebook good view // @author loxymondor // @description delete facebook newsfeed ads and making all postes bigger // @updateURL https://openuserjs.org/meta/miko99/facebook_good_view.meta.js // @include https://*.facebook.com/* // @include https://facebook.com/* // @version 1 // @grant none // ==/UserScript== window.onload = function fgv() { try { document.getElementById('rightCol').remove(); } catch (err) { console.error(err); } try { var ca = document.getElementById('contentArea'); ca.style = 'left: 0px; width: 100% ! important;'; } catch (err) { console.error(err); } };