Skip to content

Instantly share code, notes, and snippets.

@iMerica
Created September 22, 2011 04:07
Show Gist options
  • Save iMerica/1234010 to your computer and use it in GitHub Desktop.
Save iMerica/1234010 to your computer and use it in GitHub Desktop.
Michael's Scrolling Sidebar Remover
// ==UserScript==
// @name Michael's Badass Facebook Sidebar Remover
// @namespace http://facebook.com/iMichael
// @description Removes that "annoying" side bar you've been complaining about.
// @include http://*.facebook.com/*
// @include https://*.facebook.com/*
// @match http://*.facebook.com/*
// @match https://*.facebook.com/*
// @version 0.0.1
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle('.homeWiderContent div#rightCol { display: none ! important; }');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment