Skip to content

Instantly share code, notes, and snippets.

@to
Created August 11, 2010 09:16
Show Gist options
  • Save to/518729 to your computer and use it in GitHub Desktop.
Save to/518729 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Twitter Title Chop
// @include http://twitter.com/*
// ==/UserScript==
window.addEventListener('load', function(){
document.title = document.title.replace(/Twitter[ \/]*/, '');
}, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment