Skip to content

Instantly share code, notes, and snippets.

@myusuf3
Created May 31, 2011 20:17
Show Gist options
  • Save myusuf3/1001189 to your computer and use it in GitHub Desktop.
Save myusuf3/1001189 to your computer and use it in GitHub Desktop.
Removing thew new twitter banner
// ==UserScript==
// @name No new Twitter banner
// @description just remove the top banner which tell you new Twitter available.
// @author ayanamist
// @include https://twitter.com/*
// @include http://twitter.com/*
// @match https://twitter.com/*
// @match http://twitter.com/*
// ==/UserScript==
try {
var node = document.getElementsByClassName('fixed-banners')[0];
node.parentNode.removeChild(node);
node = null;
} catch(err){}
var bodyNode = document.getElementsByTagName('body')[0];
bodyNode.className = bodyNode.className.replace('phoenix-skybar', '');
bodyNode = null;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment