// ==UserScript==
// @name                Show "Ship To"
// @version             1.1
// @date                2009-04-14
// @author              Ian Malpass ( ian AT etsyhacks DOT com )
// @namespace           etsy.com
// @description         Shows "ship to" name next to each order on the Sold Orders page
// @include             http://www.etsy.com/your/listings/sold*
// ==/UserScript==

var style = document.createElement( 'style' );
style.type = 'text/css';
style.innerHTML = '.etsyhacks_order_notes { display: table-row !important } .etsyhacks_ship_to { display: block !important }';
document.getElementsByTagName( 'head' )[ 0 ].appendChild( style );


