Skip to content

Instantly share code, notes, and snippets.

@to
Created August 11, 2010 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • 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);
@Korb
Copy link

Korb commented Jul 27, 2022

What exactly does this script do?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment