// ==UserScript==
// @name                Chat window tweaker
// @version             1.0
// @date                2008-12-19
// @author              Ian Malpass ( ian AT etsyhacks DOT com )
// @namespace           etsy.com
// @description         Etsy links opened from chat windows open in separate tabs
// @include             http://www.etsy.com/*
// ==/UserScript==

if ( window.name == "etsy_chat" ) {
    var d = new Date;
    window.name += ' ' + d.toString() + ', ' + Math.random();
}    

