// ==UserScript==
// @name      Twitter Fix Title
// @namespace http://opera.higeorange.com/
// @inlcude   http://twitter.com/*
// ==/UserScript==

(function() {
    var type = /favorites|replies/;
    var o_type = /with_friends|favorites/;
    var l = document.location.href.split('/');
    var m, a;
    if(m = l[3].match(type)) {
        document.title += ' / ' + m[0];
    } else if (m = l[4].match(o_type)) {
        if(m[0] == 'favorites') {
            a = l[3] + ' / ' + m[0]
        } else {
            a = m[0]
        }
        document.title += ' / ' + a 
    }
})();
