NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Facebook Hide Blue Header // @namespace https://www.facebook.com/ // @description Hides the blue header and your name. It is useful when you are in public area, or you don't want to letting your parents know you are using Facebook // @include https://www.facebook.com/* // @version 1 // @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js // @grant GM_addStyle // ==/UserScript== /* function myFunction() { var list = document.getElementById('pagelet_bluebar'); list.removeChild(list.childNodes[0]); }*/ //hides the blue bar/header $("#pagelet_bluebar").hide() //hides your name $(".fbxWelcomeBoxSmallRow").hide()