Skip to content

Instantly share code, notes, and snippets.

@thameera
Created April 23, 2014 03:25
Show Gist options
  • Save thameera/11201898 to your computer and use it in GitHub Desktop.
Save thameera/11201898 to your computer and use it in GitHub Desktop.
Removes the nagging 'try teh new profile' banner. For Chrome, go to Tools-> Extensions and drag this file to it.
// ==UserScript==
// @name fuck you twitter
// @namespace http://thameera.com
// @description Removes the nagging 'try the new profile' banner
// @include *://twitter.com/*
// @version 0.1
// ==/UserScript==
(function() {
document.getElementsByClassName('BannersContainer')[0].style.display = 'none';
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment