// ==UserScript==
// @name                Show "Ship To"
// @version             1.0
// @date                2009-04-24
// @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/sold_orders.php*
// ==/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 );

