Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

eBay - Completed Items

This greasemonkey script adds link to the editable completed search for ever eBay item description. This script helps you find out how much the have been selling on eBay for the last 30 days and will work out the average for you.



Version 1.2 (Updated: 20/04/08)

CHANGE LOG
1.2 - Works out average for Completed Items that have sold
1.1 - Auction Title is Editable and Opens in a New Window


This works on the following eBay sites:
Australia, Austria, Belgium, Canada, China, France, Germany, Hong Kong, India, Ireland, Italy, Korea, Malaysia, Netherlands, New Zealand, Philippines, Poland, Singapore, Spain, Switzerland, Thailand, United Kingdom, United States






Feb 7, 2008
Keith Hopkins Script's author

I have improve the work flow auction title is editable via a prompt box and Opens in a New Window

 
Dec 14, 2007
Keith Hopkins Script's author

Hi bobielawlintine,

Thanks for your suggestion. I have implemented it :)

search = (h1[h1.length-1].innerHTML);

Thanks,
Keith

 
Dec 13, 2007
bobielawlintine Scriptwright

Or just use:
search = (h1[1].innerHTML);

because the title of the auction is always the first h1-tag.

 
Dec 13, 2007
bobielawlintine Scriptwright

This script is a great idea... just a little enhancement:

instead of using
for ( var i = 0; i < h1.length; i++ ) {
search = (h1[i].innerHTML);
}

you can simply use:
search = (h1[h1.length-1].innerHTML);

You could comment on this script if you were logged in.