Skip to content

Instantly share code, notes, and snippets.

@lucasfcosta
Created October 10, 2014 01:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lucasfcosta/632842f0fa71ccffe680 to your computer and use it in GitHub Desktop.
Save lucasfcosta/632842f0fa71ccffe680 to your computer and use it in GitHub Desktop.
HideMyTimeline Script
// ==UserScript==
// @name HideMyTimeline
// @namespace http://github.com/lucasfcosta
// @description Hides Facebook timeline so you can focus on what really matters
// @include https://www.facebook.com/*
// @version 1
// @grant none
// ==/UserScript==
$(document).ready(function() {
var timeline = document.getElementById('contentArea');
timeline.remove();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment