Created
May 31, 2011 20:17
-
-
Save myusuf3/1001189 to your computer and use it in GitHub Desktop.
Removing thew new twitter banner
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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