Skip to content

Instantly share code, notes, and snippets.

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